#pragma once #include using namespace std; class Commands { public: CString IDnr,CommandID, InstallationsID; }; class Installation { public: CString InstPhoneNr, Imei, Updaterate, instID; }; class ConfigFile { public: void ReadSettings(); CString host,username,password,database,comport; }; class Acknowledge { public: Acknowledge(CString instid, CString tlf) { sInstallationID = instid; sTlfNr = tlf; cTime = CTime::GetCurrentTime(); iRetry = 0; } CString sInstallationID, sTlfNr; CTime cTime; int iRetry; }; class keepalive { public: CString name, value, Phonenr; CTime tid; };