void setOID(ostc_OID *);
Returns a pointer to the OID of this. Returns 0 if the OID has not been set.
ostc_OperationResult::getOID()
ostc_OID* getOID();
Do not call these functions from your implementation of Server API functions.
A minimal custom server can be coded as follows:
#include <ostc/ostcappsrvr.h>
main(int argc, char** argv)
{
ostc_ApplicationServer * server =
new ostc_ApplicationServer(argc, argv);
server->start();
sleep();
}