Я объявил класс
class DCFrameListener : public FrameListener, public OIS::MouseListener, public OIS::KeyListener
{
bool keyPressed(const OIS::KeyEvent & kEvt);
bool keyReleased(const OIS::KeyEvent &kEvt);
//*******some code missing************************
};
Но если я попытаюсь определить членов, как это
bool DCFrameListener::keyPressed(const OIS::KeyEvent kEvt)
{
return true;
}
Компилятор отказывается с этой ошибкой
error C2511: 'bool DCFrameListener::keyPressed(const OIS::KeyEvent)' : overloaded member function not found in 'DCFrameListener'
see declaration of 'DCFrameListener'
Почему это происходит, но я объявил член keyPressed (const OIS :: KeyEvent) в объявлении функции.
любая помощь будет оценена. Спасибо