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/input/InputBuffer.h

    r1535 r1634  
    144144            void updated(const char& update, bool bSingleInput);
    145145
    146             inline std::string get() const
     146            std::string get() const
    147147                { return this->buffer_; }
    148             inline unsigned int getSize() const
     148            unsigned int getSize() const
    149149                { return this->buffer_.size(); }
    150150
    151             inline unsigned int getCursorPosition() const
     151            unsigned int getCursorPosition() const
    152152                { return this->cursor_; }
    153             inline void setCursorPosition(unsigned int cursor)
     153            void setCursorPosition(unsigned int cursor)
    154154                { if (cursor <= this->buffer_.size()) { this->cursor_ = cursor; } }
    155             inline void setCursorToEnd()
     155            void setCursorToEnd()
    156156                { this->cursor_ = this->buffer_.size(); }
    157             inline void setCursorToBegin()
     157            void setCursorToBegin()
    158158                { this->cursor_ = 0; }
    159             inline void increaseCursor()
     159            void increaseCursor()
    160160                { if (this->cursor_ < this->buffer_.size()) { ++this->cursor_; } }
    161             inline void decreaseCursor()
     161            void decreaseCursor()
    162162                { if (this->cursor_ > 0) { --this->cursor_; } }
    163163
Note: See TracChangeset for help on using the changeset viewer.