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