Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 17, 2008, 3:58:19 AM (16 years ago)
Author:
landauf
Message:
  • implemented Shell, but not yet linked with the graphical console
  • added new features (cursor, OIS::KeyCode listener) to InputBuffer
  • changed some includes to avoid circular header-dependencies in OrxonoxClass and Shell
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/console/src/core/ConfigValueContainer.h

    r1062 r1313  
    107107            void update();
    108108
     109            bool parse(const std::string& input);
     110            bool parse(const std::string& input, const MultiTypeMath& defvalue);
     111
     112            bool set(unsigned int index, const std::string& input);
     113            bool tset(unsigned int index, const std::string& input);
     114            bool parse(unsigned int index, const std::string& input);
     115            bool parse(unsigned int index, const std::string& input, const MultiTypeMath& defvalue);
     116
    109117            /** @brief Converts the config-value to a string. @return The string */
    110118            inline std::string toString() const
     
    115123
    116124        private:
    117             bool parse(const std::string& input);
    118             bool parse(const std::string& input, const MultiTypeMath& defvalue);
    119 
    120             bool set(unsigned int index, const std::string& input);
    121             bool tset(unsigned int index, const std::string& input);
    122             bool parse(unsigned int index, const std::string& input);
    123             bool parse(unsigned int index, const std::string& input, const MultiTypeMath& defvalue);
    124 
    125125            bool                       bIsVector_;                  //!< True if the container contains a std::vector
    126126
Note: See TracChangeset for help on using the changeset viewer.