Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 3, 2010, 1:30:59 PM (15 years ago)
Author:
rgrieder
Message:

Added separate page for a commandline argument reference.
It's not too useful, but better than nothing.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/doc/src/orxonox/Main.cc

    r7163 r7335  
    4343#include "Main.h"
    4444
    45 SetCommandLineSwitch(console).information("Start in console mode (text IO only)");
    46 // Shortcuts for easy direct loading
    47 SetCommandLineSwitch(server).information("Start in server mode");
    48 SetCommandLineSwitch(client).information("Start in client mode");
    49 SetCommandLineSwitch(dedicated).information("Start in dedicated server mode");
    50 SetCommandLineSwitch(standalone).information("Start in standalone mode");
    51 SetCommandLineSwitch(dedicatedClient).information("Start in dedicated client mode");
    52 
    5345DeclareToluaInterface(Orxonox);
    5446DeclareToluaInterface(Network);
     
    5648namespace orxonox
    5749{
     50    //! @cmdarg
     51    SetCommandLineSwitch(console).information("Start in console mode (text IO only)");
     52    //! @cmdarg
     53    SetCommandLineSwitch(server).information("Start in server mode");
     54    //! @cmdarg
     55    SetCommandLineSwitch(client).information("Start in client mode");
     56    //! @cmdarg
     57    SetCommandLineSwitch(dedicated).information("Start in dedicated server mode");
     58    //! @cmdarg
     59    SetCommandLineSwitch(standalone).information("Start in standalone mode");
     60    //! @cmdarg
     61    SetCommandLineSwitch(dedicatedClient).information("Start in dedicated client mode");
     62
    5863    /**
    5964    @brief
Note: See TracChangeset for help on using the changeset viewer.