anyKode Marilou
ContentsIndexHome
Example
#include "Modacpp.h"
#include "conio.h"

#define SIMULATEDROBOT "/robot1"
#define MODASERVER "localhost"

int main(int argc, TCHAR* argv[])
{
ModaCPP::Connection *connection=new ModaCPP::Connection(true);
if(connection->Connect(MODASERVER))
    {
    _cprintf("Connexion to %s ok\r\n",MODASERVER);
    ModaCPP::RobotPHX *robot=connection->QueryRobotPHX(SIMULATEDROBOT);
    if(robot)
        {
        cprintf("robot found\r\n");
        }
    else
        {
        cprintf("robot not found\r\n");
        }
    }
else
    {
    cprintf("Unable to connect to moda server : be sure Exec is running and MODA TCP/UDP ports are open\r\n");
    }
connection->Disconnect();
return 0;
}
Documentation v4.7 (30/07/2011), Copyright (c) 2011 anyKode. All rights reserved.