|
26 | 26 | #include "utilities/configuration.hpp" |
27 | 27 |
|
28 | 28 | class FalconConfiguration : public Configuration { |
29 | | -public: |
30 | | - FalconConfiguration(); |
| 29 | + public: |
| 30 | + FalconConfiguration(); |
31 | 31 |
|
32 | | - // CONFIG OPTIONS |
33 | | -public: |
34 | | - options::String graph_file{""}; |
35 | | - options::Bool debug_enabled{false}; |
36 | | - options::Bool testing_enabled{false}; |
37 | | - options::Bool graph_autostart{false}; |
38 | | - options::Int network_port{5555}; |
39 | | - options::String logging_path{"./", options::isdir()}; |
40 | | - options::Bool logging_screen_enabled{true}; |
41 | | - options::Bool logging_cloud_enabled{true}; |
42 | | - options::Int logging_cloud_port{5556}; |
43 | | - options::String server_side_storage_environment{"./", options::isdir()}; |
44 | | - options::String server_side_storage_resources{"@RESOURCES_PATH@/resources", |
45 | | - options::isdir(true, true)}; |
46 | | - options::ValueMap<options::String> server_side_storage_custom; |
| 32 | + // CONFIG OPTIONS |
| 33 | + public: |
| 34 | + options::String graph_file{""}; |
| 35 | + options::Bool debug_enabled{false}; |
| 36 | + options::Bool testing_enabled{false}; |
| 37 | + options::Bool graph_autostart{false}; |
| 38 | + options::Int network_port{5555}; |
| 39 | + options::String logging_path{"./", options::isdir(true, true)}; |
| 40 | + options::Bool logging_screen_enabled{true}; |
| 41 | + options::Bool logging_cloud_enabled{true}; |
| 42 | + options::Int logging_cloud_port{5556}; |
| 43 | + options::String server_side_storage_environment{"./", options::isdir(true, true)}; |
| 44 | + options::String server_side_storage_resources{"@RESOURCES_PATH@/resources", |
| 45 | + options::isdir(true, true)}; |
| 46 | + options::ValueMap<options::String> server_side_storage_custom; |
47 | 47 | }; |
48 | 48 |
|
49 | 49 | #endif |
0 commit comments