- Timestamp:
- Nov 23, 2015, 10:20:29 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/input/InputBuffer.h
r10817 r10845 66 66 { } 67 67 virtual ~InputBufferListenerTuple() { } 68 v oid callFunction() override68 virtual void callFunction() override 69 69 { 70 70 (listener_->*function_)(); … … 165 165 { if (this->cursor_ > 0) { --this->cursor_; } } 166 166 167 v oid buttonPressed(const KeyEvent& evt) override;167 virtual void buttonPressed(const KeyEvent& evt) override; 168 168 169 169 private: 170 170 bool charIsAllowed(const char& input); 171 171 172 v oid buttonHeld(const KeyEvent& evt) override;173 void processKey 172 virtual void buttonHeld (const KeyEvent& evt) override; 173 void processKey (const KeyEvent& evt); 174 174 175 v oid keyboardUpdated(float dt) override;175 virtual void keyboardUpdated(float dt) override; 176 176 177 177 std::string buffer_;
Note: See TracChangeset
for help on using the changeset viewer.