Initialization

As usual for C++-programs a module containing a main routine must be linked to the method implementations. To enable the incremental loading of method implementations, such main routines should start with a call of the function sos_init to which the command line arguments must be passed:

   int main (int argc, char *argv[])
   {
      sos_init (argc, argv);
      ...
      return 0;
   }