Changes in src/Actions/ValueStorage.hpp [e5ece4:e6c470]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Actions/ValueStorage.hpp
re5ece4 re6c470 19 19 #include <boost/program_options.hpp> 20 20 21 #include <iosfwd>22 21 #include <map> 23 22 #include <set> … … 89 88 * to store&retrieve/exchange values. 90 89 * 91 * \section <ValueStorage> (ValueStorage howto)90 * \section ValueStorage ValueStorage howto 92 91 * 93 92 * If you ever need to add a particular class to the ValueStorage, do as follows: … … 102 101 class ValueStorage : public Singleton<ValueStorage> { 103 102 friend class Singleton<ValueStorage>; 104 friend std::ostream & operator<<(std::ostream &ost, const ValueStorage &value); 103 105 104 public: 106 105 … … 211 210 const std::string getCurrentValue(std::string actionname); 212 211 213 214 212 protected: 215 213 ValueStorage(); … … 218 216 std::map<std::string, std::string> CurrentValueMap; 219 217 220 MoleCuilder::OptionRegistry &OptionRegistry_instance;218 OptionRegistry &OptionRegistry_instance; 221 219 }; 222 220 223 std::ostream & operator<<(std::ostream &ost, const ValueStorage &value);224 225 226 221 #endif /* VALUESTORAGE_HPP_ */
Note:
See TracChangeset
for help on using the changeset viewer.