X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp%2FConfig.hpp;h=d584766b48ad9bbbbf564ddc74d15e3894652a6f;hb=fd86376a8e7d3f1b09be3d018f772ef884937238;hp=4beb0627b6d609405e1ef0765b0553c68fff6918;hpb=b066e776622f96e906600a0c4a08de392bd03676;p=blank.git diff --git a/src/app/Config.hpp b/src/app/Config.hpp index 4beb062..d584766 100644 --- a/src/app/Config.hpp +++ b/src/app/Config.hpp @@ -2,6 +2,7 @@ #define BLANK_APP_CONFIG_HPP_ #include +#include #include @@ -29,6 +30,7 @@ struct Config { std::string host = "localhost"; std::uint16_t port = 12354; + std::uint16_t cmd_port = 0; } net; @@ -50,6 +52,9 @@ struct Config { } video; + void Load(std::istream &); + void Save(std::ostream &); + }; }