#include #include using namespace std; int main () { int value; value = DimClient::sendCommand("SCHEDULER/SCHEDULE", NULL, 0); cout << "\n"; cout << " The method sendCommand(...) will wait for the command to be actualy sent to the Server and return a completion code of : " << endl; cout << " 1 - if it was successfully sent " << endl; cout << " 0 - if it couldn't be delivered. " << endl; cout << "\n"; cout << " The completion code is now: " << value << endl; return 0; }