Stardock 0.0.1
File System Points Synchronizer
Loading...
Searching...
No Matches
config.hh
Go to the documentation of this file.
1#ifndef CONFIG_HH
2#define CONFIG_HH
4#include <string>
5namespace stardock {
6 struct Config {
7 bool help = false;
8 bool refresh = false;
9 bool verbose = false;
10 bool asym_diff = false;
11 bool sym_diff = false;
12 bool transfer = false;
13 bool align = false;
14 bool index = false;
15 std::string src = "";
16 std::string dst = "";
17 };
18}
19#endif//CONFIG_HH
Definition align.hh:5
Definition config.hh:6
std::string dst
Definition config.hh:16
bool sym_diff
Definition config.hh:11
bool verbose
Definition config.hh:9
bool refresh
Definition config.hh:8
bool help
Definition config.hh:7
std::string src
Definition config.hh:15
bool transfer
Definition config.hh:12
bool align
Definition config.hh:13
bool asym_diff
Definition config.hh:10
bool index
Definition config.hh:14