#ifndef _fwk_CommandLineOptions_h_ #define _fwk_CommandLineOptions_h_ #include #include namespace fwk { /** \class CommandLineOptions CommandLineOptions.h fwk/CommandLineOptions.h Command-line options singleton. Set by the AugerOfflineMain(). \author Darko Veberic \date 14 Jul 2009 \version $Id: CommandLineOptions.h 18212 2010-12-21 14:16:51Z darko $ \ingroup fwk */ class CommandLineOptions : public utl::Singleton { public: void SetVariablesMap(const boost::program_options::variables_map& vm) { fVariablesMap = vm; } const boost::program_options::variables_map& GetVariablesMap() const { return fVariablesMap; } private: boost::program_options::variables_map fVariablesMap; }; } #endif