Remove declaration of unimplemented function

This commit is contained in:
Chris Thrasher 2023-11-09 16:41:59 -07:00
parent 5735fd09d9
commit df284acefe
No known key found for this signature in database
GPG Key ID: 56FB686C9DFC8E2C

View File

@ -258,20 +258,6 @@ public:
void display();
private:
////////////////////////////////////////////////////////////
/// \brief Processes an event before it is sent to the user
///
/// This function is called every time an event is received
/// from the internal window (through pollEvent or waitEvent).
/// It filters out unwanted events, and performs whatever internal
/// stuff the window needs before the event is returned to the
/// user.
///
/// \param event Event to filter
///
////////////////////////////////////////////////////////////
bool filterEvent(const Event& event);
////////////////////////////////////////////////////////////
/// \brief Perform some common internal initializations
///