mergerfs/src/fs_pathvector.hpp

11 lines
118 B
C++

#pragma once
#include "fs_path.hpp"
#include <vector>
namespace fs
{
typedef std::vector<fs::Path> PathVector;
}