mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
d2700f818b
update spec
22 lines
299 B
C++
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
|