Stardock 0.0.1
File System Points Synchronizer
Loading...
Searching...
No Matches
point.hh
Go to the documentation of this file.
1#ifndef POINT_HH
2#define POINT_HH
4#include <stardock/index.hh>
5
6namespace stardock {
7 struct Point {
8 std::string location;
10
11 bool load(std::string location);
12 bool create(std::string location);
13
14 private:
15 void build(std::string subdir);
16 };
17}
18#endif//POINT_HH
Definition align.hh:5
Definition index.hh:9
Definition point.hh:7
Index index
Definition point.hh:9
bool load(std::string location)
Definition point.cc:37
void build(std::string subdir)
Definition point.cc:10
bool create(std::string location)
Definition point.cc:43
std::string location
Definition point.hh:8