#include "Table.h" #include "IoTString.h" #include "TimingSingleton.h" #include "TransactionStatus.h" #define NUMBER_OF_SENSORS 1 #define MACHINE_ID 260 int main(int numargs, char ** args) { TimingSingleton * timer = TimingSingleton_getInstance(); // Setup the 2 clients IoTString *baseurl = new IoTString("http://dc-6.calit2.uci.edu/test.iotcloud/"); IoTString * password = new IoTString("reallysecret"); Table * t1 = new Table(baseurl, password, MACHINE_ID, -1); t1->initTable(); //t1->rebuild(); printf("T1 Ready\n"); baseurl->releaseRef(); password->releaseRef(); delete t1; }