lokinet/llarp/fs.hpp
Jeff Becker d2700f818b
comply with spec
update spec
2018-06-12 08:49:23 -04:00

22 lines
299 B
C++

#ifndef LLARP_FS_HPP
#define LLARP_FS_HPP
#if(__cplusplus >= 201703L)
#include <experimental/filesystem>
namespace fs = std::experimental::filesystem;
#else
#error "fs support unimplemented"
#include <string>
namespace fs
{
static std::string Sep = "/";
struct path
{
};
}
#endif
#endif