You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/fs.hpp

22 lines
299 B
C++

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