Changeset 1854 for code/trunk/src/util
- Timestamp:
- Sep 28, 2008, 5:30:14 PM (16 years ago)
- Location:
- code/trunk/src/util
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/util/MultiType.h
r1791 r1854 189 189 virtual void toString(std::ostream& outstream) const = 0; 190 190 191 MT_Type type_; //! The type of the current value191 MT_Type type_; //!< The type of the current value 192 192 }; 193 193 … … 388 388 template <typename T> void createNewValueContainer(const T& value) { BOOST_STATIC_ASSERT(sizeof(T) == 0); } 389 389 390 MT_ValueBase* value_; //! A pointer to the value container390 MT_ValueBase* value_; //!< A pointer to the value container 391 391 }; 392 392 -
code/trunk/src/util/MultiTypeValue.h
r1791 r1854 110 110 inline void toString(std::ostream& outstream) const { outstream << this->value_; } 111 111 112 T value_; //! The stored value112 T value_; //!< The stored value 113 113 }; 114 114 -
code/trunk/src/util/OutputBuffer.h
r1791 r1854 167 167 void callListeners(); 168 168 169 std::stringstream stream_; //! The stringstream that stores the assigned text170 std::list<OutputBufferListener*> listeners_; //! A list of all listeners169 std::stringstream stream_; //!< The stringstream that stores the assigned text 170 std::list<OutputBufferListener*> listeners_; //!< A list of all listeners 171 171 }; 172 172 }
Note: See TracChangeset
for help on using the changeset viewer.