First commit.

This commit is contained in:
Robin Davies
2021-08-15 12:42:46 -04:00
commit d8a6022947
264 changed files with 95068 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#pragma once
#include "json.hpp"
namespace pipedal {
class PiPedalVersion {
private:
std::string server_;
std::string serverVersion_;
std::string operatingSystem_;
std::string osVersion_;
bool debug_;
public:
PiPedalVersion();
~PiPedalVersion() = default;
DECLARE_JSON_MAP(PiPedalVersion);
};
} // namepace pipedal