Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 17, 2008, 12:55:03 AM (15 years ago)
Author:
rgrieder
Message:

Merged overlay branch into presentation branch.

Location:
code/branches/presentation
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation

  • code/branches/presentation/src/util

  • code/branches/presentation/src/util/MultiType.h

    r2171 r2492  
    305305
    306306            /** @brief Current content gets deleted. New type is MT_null */
    307             inline void                       reset()                         { if (this->value_) this->value_->reset(); }
    308 
    309             template <typename T> inline void setType()                       { this->assignValue(T());                            } /** @brief Resets the value and changes the internal type to T. */
    310             inline void                       setType(const MultiType& other) { this->setType(other.getType());                    } /** @brief Resets the value and changes the internal type to the type of the other MultiType. */
    311             inline void                       setType(MT_Type type)           { this->reset(); this->convert(type); this->reset(); } /** @brief Resets the value and changes the internal type to the given type. */
     307            inline void                       reset()                         { if (this->value_) delete this->value_; this->value_ = 0; }
     308            /** @brief Current content gets overridden with default zero value */
     309            inline void                       resetValue()                    { if (this->value_) this->value_->reset(); }
     310
     311            template <typename T> inline void setType()                       { this->assignValue(T());                                 } /** @brief Resets the value and changes the internal type to T. */
     312            inline void                       setType(const MultiType& other) { this->setType(other.getType());                         } /** @brief Resets the value and changes the internal type to the type of the other MultiType. */
     313            inline void                       setType(MT_Type type)           { this->reset(); this->convert(type); this->resetValue(); } /** @brief Resets the value and changes the internal type to the given type. */
    312314
    313315            /** @brief Returns the current type. */
Note: See TracChangeset for help on using the changeset viewer.