Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 29, 2011, 10:56:57 PM (14 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.cc

    r8524 r8669  
    3434#include "Shell.h"
    3535
     36#include "util/Math.h"
    3637#include "util/OutputHandler.h"
    3738#include "util/StringUtils.h"
     
    4142#include "core/ConfigValueIncludes.h"
    4243#include "core/PathConfig.h"
     44#include "core/input/InputBuffer.h"
    4345#include "CommandExecutor.h"
    4446#include "ConsoleCommand.h"
     
    237239    }
    238240
     241    /// Returns the current position of the cursor in the input buffer.
     242    unsigned int Shell::getCursorPosition() const
     243    {
     244        return this->inputBuffer_->getCursorPosition();
     245    }
     246
     247    /// Returns the current content of the input buffer (the text which was entered by the user)
     248    const std::string& Shell::getInput() const
     249    {
     250        return this->inputBuffer_->get();
     251    }
     252
    239253    /**
    240254        @brief Sends output to the internal output buffer.
Note: See TracChangeset for help on using the changeset viewer.