Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1854 for code/trunk/src/util


Ignore:
Timestamp:
Sep 28, 2008, 5:30:14 PM (16 years ago)
Author:
landauf
Message:
  • some cmake fixes for ceguilua and mingw
  • small change in XMLPort
Location:
code/trunk/src/util
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/util/MultiType.h

    r1791 r1854  
    189189        virtual void toString(std::ostream& outstream) const = 0;
    190190
    191         MT_Type type_; //! The type of the current value
     191        MT_Type type_; //!< The type of the current value
    192192    };
    193193
     
    388388        template <typename T>        void createNewValueContainer(const T& value) { BOOST_STATIC_ASSERT(sizeof(T) == 0); }
    389389
    390         MT_ValueBase* value_; //! A pointer to the value container
     390        MT_ValueBase* value_; //!< A pointer to the value container
    391391};
    392392
  • code/trunk/src/util/MultiTypeValue.h

    r1791 r1854  
    110110    inline void toString(std::ostream& outstream) const { outstream << this->value_; }
    111111
    112     T value_; //! The stored value
     112    T value_; //!< The stored value
    113113};
    114114
  • code/trunk/src/util/OutputBuffer.h

    r1791 r1854  
    167167            void callListeners();
    168168
    169             std::stringstream stream_;                   //! The stringstream that stores the assigned text
    170             std::list<OutputBufferListener*> listeners_; //! A list of all listeners
     169            std::stringstream stream_;                   //!< The stringstream that stores the assigned text
     170            std::list<OutputBufferListener*> listeners_; //!< A list of all listeners
    171171    };
    172172}
Note: See TracChangeset for help on using the changeset viewer.