Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/ValueStorage.hpp

    re5ece4 re6c470  
    1919#include <boost/program_options.hpp>
    2020
    21 #include <iosfwd>
    2221#include <map>
    2322#include <set>
     
    8988 * to store&retrieve/exchange values.
    9089 *
    91  * \section <ValueStorage> (ValueStorage howto)
     90 * \section ValueStorage ValueStorage howto
    9291 *
    9392 * If you ever need to add a particular class to the ValueStorage, do as follows:
     
    102101class ValueStorage : public Singleton<ValueStorage> {
    103102  friend class Singleton<ValueStorage>;
    104   friend std::ostream & operator<<(std::ostream &ost, const ValueStorage &value);
     103
    105104public:
    106105
     
    211210  const std::string getCurrentValue(std::string actionname);
    212211
    213 
    214212protected:
    215213  ValueStorage();
     
    218216  std::map<std::string, std::string> CurrentValueMap;
    219217
    220   MoleCuilder::OptionRegistry &OptionRegistry_instance;
     218  OptionRegistry &OptionRegistry_instance;
    221219};
    222220
    223 std::ostream & operator<<(std::ostream &ost, const ValueStorage &value);
    224 
    225 
    226221#endif /* VALUESTORAGE_HPP_ */
Note: See TracChangeset for help on using the changeset viewer.