Changeset 10353 for code/branches/core7/src/libraries/core/commandline
- Timestamp:
- Apr 8, 2015, 11:15:43 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/core7/src/libraries/core/commandline/CommandLineIncludes.h
r10345 r10353 49 49 #define SetCommandLineArgument(name, defaultValue) \ 50 50 orxonox::CommandLineArgument& CmdArgumentDummyBoolVar##name \ 51 = (new orxonox::StaticallyInitializedCommandLineArgument(new orxonox::CommandLineArgument(#name, defaultValue)))->getArgument()51 = (new orxonox::SI_CLA(new orxonox::CommandLineArgument(#name, defaultValue)))->getArgument() 52 52 #define SetCommandLineSwitch(name) \ 53 53 SetCommandLineArgument(name, false) … … 69 69 CommandLineArgument* argument_; 70 70 }; 71 72 typedef StaticallyInitializedCommandLineArgument SI_CLA; 71 73 } 72 74
Note: See TracChangeset
for help on using the changeset viewer.