Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 26, 2015, 8:47:52 PM (10 years ago)
Author:
landauf
Message:

added unload() function to StaticallyInitializedInstance

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core7/src/libraries/core/commandline/CommandLineParser.cc

    r10345 r10404  
    354354        _getInstance().cmdLineArgs_[argument->getName()] = argument;
    355355    }
     356
     357    /**
     358     * @brief Removes a CommandLineArgument from the internal map.
     359     */
     360    void CommandLineParser::removeArgument(CommandLineArgument* argument)
     361    {
     362        _getInstance().cmdLineArgs_.erase(argument->getName());
     363    }
    356364}
Note: See TracChangeset for help on using the changeset viewer.