okies, she builds now so up next is making it actually do something

useful
This commit is contained in:
DarthArgus
2016-10-17 21:39:44 +00:00
parent 08cc494dda
commit 83d2c16179
3 changed files with 12 additions and 16 deletions
+7 -7
View File
@@ -6,16 +6,16 @@
using namespace StellaBellum;
webAPIHeartbeat:webAPIHeartbeat() {
vxCplEncryptedString u = vxENCRYPT("https://login.stellabellum.net/metriccontroller/shoulderTap?type=server");
#define vxENCRYPT2(Str) (vxCplEncryptedString<vxCplIndexes<sizeof(Str) - 1>::Result>(Str))
webAPI handle = webAPI::webAPI(u.decrypt());
webAPIHeartbeat::webAPIHeartbeat() {
auto u = vxENCRYPT("https://login.stellabellum.net/metriccontroller/shoulderTap?type=server");
webAPI handle = webAPI::webAPI(std::string(u.decrypt()));
handle.addJsonData("ip", "test");
bool result = fetch.submit(); // data is stored as a class member
bool result = handle.submit(); // data is stored as a class member
// do stuff
delete handle;
};
};