Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1780


Ignore:
Timestamp:
Sep 14, 2008, 11:48:18 PM (16 years ago)
Author:
rgrieder
Message:

reverted some changes

Location:
code/branches/core3/src/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/core3/src/util/MultiType.h

    r1768 r1780  
    129129
    130130        virtual void toString(std::ostream& outstream) const = 0;
    131         //virtual void toString(std::ostream& outstream) const = 0;
    132         //inline friend virtual std::ostream& operator <<(std::ostream& outstream, const MT_ValueBase& mtb);
    133131
    134132        MT_Type type_;
     
    240238        template <class T> operator T*() const { return ((T*)this->operator void*()); }
    241239
    242         inline friend std::ostream& operator<<(std::ostream& outstream, const MultiType& mt) { if (mt.value_) { mt.value_->toString(outstream); } return outstream; }
    243 
    244240        inline void getValue(char*                 value) const { if (this->value_) { (*value) = (*this->value_); } }
    245241        inline void getValue(unsigned char*        value) const { if (this->value_) { (*value) = (*this->value_); } }
     
    322318};
    323319
    324 //_UtilExport inline std::ostream& operator<<(std::ostream& outstream, const MultiType& mt) { if (mt.value_) { mt.value_->toString(outstream); } return outstream; }
     320_UtilExport inline std::ostream& operator<<(std::ostream& outstream, const MultiType& mt) { if (mt.value_) { mt.value_->toString(outstream); } return outstream; }
    325321
    326322template <> inline bool MultiType::isType<char>()                 const { return (this->value_ && this->value_->type_ == MT_char);        }
  • code/branches/core3/src/util/MultiTypeValue.h

    r1777 r1780  
    9191    inline operator orxonox::Degree()      const { return getConvertedValue<T, orxonox::Degree>     (this->value_); }
    9292
    93     inline void toString(std::ostream& outstream) const { std::operator <<(outstream, conversion_cast<std::string>(this->value_)); }
    94     //inline friend std::ostream& operator <<(std::ostream& outstream, const MT_Value& mtv) { outstream << conversion_cast<std::string>(this->value_); return outsream; }
     93    inline void toString(std::ostream& outstream) const { outstream << this->value_; }
    9594
    9695    T value_;
Note: See TracChangeset for help on using the changeset viewer.