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

Location:
code/branches/gcc43/src/orxonox/hud
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gcc43/src/orxonox/hud/BarOverlayElement.h

    r1568 r1634  
    5454      void clearColours();
    5555
    56       inline void setRightToLeft(bool r2l)
     56      void setRightToLeft(bool r2l)
    5757        { this->right2Left_ = r2l; }
    58       inline bool getRightToLeft() const
     58      bool getRightToLeft() const
    5959        { return this->right2Left_; }
    60       inline float getValue() const
     60      float getValue() const
    6161        { return this->value_; }
    6262
  • code/branches/gcc43/src/orxonox/hud/HUD.h

    r1567 r1634  
    5555        void setFPS();
    5656
    57         inline std::list<RadarObject*>& getRadarObjects()
     57        std::list<RadarObject*>& getRadarObjects()
    5858            { return this->roSet_; }
    5959
  • code/branches/gcc43/src/orxonox/hud/Navigation.h

    r1568 r1634  
    4949        float getDist2Focus() const;
    5050
    51         inline RadarObject* getFocus() const
     51        RadarObject* getFocus() const
    5252            { return this->focus_; }
    5353        void releaseFocus();
  • code/branches/gcc43/src/orxonox/hud/RadarObject.h

    r1566 r1634  
    4646
    4747        void setMaterial(const ColourValue& colour, const std::string& texturename);
    48         inline void setColour(const ColourValue& colour)
     48        void setColour(const ColourValue& colour)
    4949            { this->setMaterial(colour, this->texturename_); }
    50         inline void setTexture(const std::string& texturename)
     50        void setTexture(const std::string& texturename)
    5151            { this->setMaterial(this->colour_, texturename); }
    52         inline void resetMaterial()
     52        void resetMaterial()
    5353            { this->setMaterial(this->colour_, this->texturename_); }
    5454
     
    5656        Vector3 getOrientedVelocity() const;
    5757
    58         inline WorldEntity* getObject() const
     58        WorldEntity* getObject() const
    5959            { return this->object_; }
    60         inline Ogre::PanelOverlayElement* getPanel() const
     60        Ogre::PanelOverlayElement* getPanel() const
    6161            { return this->panel_; }
    6262
Note: See TracChangeset for help on using the changeset viewer.