Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 29, 2011, 10:56:57 PM (13 years ago)
Author:
rgrieder
Message:

Moved a few methods from header to source.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/unity_build/src/libraries/core/command/Shell.h

    r8524 r8669  
    5151#include "core/Core.h"
    5252#include "core/OrxonoxClass.h"
    53 #include "core/input/InputBuffer.h"
    5453
    5554namespace orxonox
     
    120119
    121120            void setCursorPosition(unsigned int cursor);
    122             /// Returns the current position of the cursor in the input buffer.
    123             inline unsigned int getCursorPosition() const
    124                 { return this->inputBuffer_->getCursorPosition(); }
    125 
    126             /// Returns the current content of the input buffer (the text which was entered by the user)
    127             inline const std::string& getInput() const
    128                 { return this->inputBuffer_->get(); }
     121            unsigned int getCursorPosition() const;
     122
     123            const std::string& getInput() const;
    129124
    130125            typedef std::list<std::pair<std::string, LineType> > LineList;
Note: See TracChangeset for help on using the changeset viewer.