Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 29, 2008, 7:36:33 PM (16 years ago)
Author:
nicolasc
Message:

just a test - don't morge this

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gcc43/src/core/BaseObject.h

    r1558 r1634  
    5656
    5757            /** @brief Returns if the object was initialized (passed the object registration). @return True was the object is initialized */
    58             inline bool isInitialized() const { return this->bInitialized_; }
     58            bool isInitialized() const { return this->bInitialized_; }
    5959
    6060            /** @brief Sets the name of the object. @param name The name */
    61             inline void setName(const std::string& name) { this->name_ = name; this->changedName(); }
     61            void setName(const std::string& name) { this->name_ = name; this->changedName(); }
    6262            /** @brief Returns the name of the object. @return The name */
    63             inline const std::string& getName() const { return this->name_; }
     63            const std::string& getName() const { return this->name_; }
    6464            /** @brief This function gets called if the name of the object changes. */
    6565            virtual void changedName() {}
    6666
    6767            /** @brief Sets the state of the objects activity. @param bActive True = active */
    68             inline void setActivity(bool bActive) { this->bActive_ = bActive; this->changedActivity(); }
     68            void setActivity(bool bActive) { this->bActive_ = bActive; this->changedActivity(); }
    6969            /** @brief Returns the state of the objects activity. @return The state of the activity */
    70             inline bool isActive() const { return this->bActive_; }
     70            bool isActive() const { return this->bActive_; }
    7171            /** @brief This function gets called if the activity of the object changes. */
    7272            virtual void changedActivity() {}
    7373
    7474            /** @brief Sets the state of the objects visibility. @param bVisible True = visible */
    75             inline void setVisibility(bool bVisible) { this->bVisible_ = bVisible; this->changedVisibility(); }
     75            void setVisibility(bool bVisible) { this->bVisible_ = bVisible; this->changedVisibility(); }
    7676            /** @brief Returns the state of the objects visibility. @return The state of the visibility */
    77             inline bool isVisible() const { return this->bVisible_; }
     77            bool isVisible() const { return this->bVisible_; }
    7878            /** @brief This function gets called if the visibility of the object changes. */
    7979            virtual void changedVisibility() {}
    8080
    8181            /** @brief Sets a pointer to the level that loaded this object. @param level The pointer to the level */
    82             inline void setLevel(const Level* level) { this->level_ = level; }
     82            void setLevel(const Level* level) { this->level_ = level; }
    8383            /** @brief Returns a pointer to the level that loaded this object. @return The level */
    84             inline const Level* getLevel() const { return this->level_; }
     84            const Level* getLevel() const { return this->level_; }
    8585            const std::string& getLevelfile() const;
    8686
    87             virtual inline void setNamespace(Namespace* ns) { this->namespace_ = ns; }
    88             inline Namespace* getNamespace() const { return this->namespace_; }
     87            virtual void setNamespace(Namespace* ns) { this->namespace_ = ns; }
     88            Namespace* getNamespace() const { return this->namespace_; }
    8989
    9090            /** @brief Sets the indentation of the debug output in the Loader. @param indentation The indentation */
    91             inline void setLoaderIndentation(const std::string& indentation) { this->loaderIndentation_ = indentation; }
     91            void setLoaderIndentation(const std::string& indentation) { this->loaderIndentation_ = indentation; }
    9292            /** @brief Returns the indentation of the debug output in the Loader. @return The indentation */
    93             inline const std::string& getLoaderIndentation() const { return this->loaderIndentation_; }
     93            const std::string& getLoaderIndentation() const { return this->loaderIndentation_; }
    9494
    9595        private:
Note: See TracChangeset for help on using the changeset viewer.