Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 23, 2015, 10:20:29 PM (9 years ago)
Author:
landauf
Message:

always use 'virtual' in the declaration of virtual functions even if they are inherited

Location:
code/branches/cpp11_v2/src/libraries/core/input
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v2/src/libraries/core/input/HalfAxis.h

    r10817 r10845  
    5656        using Button::execute;
    5757        bool execute();
    58         bool addParamCommand(ParamCommand* command) override;
    59         void clear() override;
     58        virtual bool addParamCommand(ParamCommand* command) override;
     59        virtual void clear() override;
    6060        void reset();
    6161
  • code/branches/cpp11_v2/src/libraries/core/input/InputBuffer.h

    r10817 r10845  
    6666        { }
    6767        virtual ~InputBufferListenerTuple() { }
    68         void callFunction() override
     68        virtual void callFunction() override
    6969        {
    7070            (listener_->*function_)();
     
    165165                { if (this->cursor_ > 0) { --this->cursor_; } }
    166166
    167             void buttonPressed(const KeyEvent& evt) override;
     167            virtual void buttonPressed(const KeyEvent& evt) override;
    168168
    169169        private:
    170170            bool charIsAllowed(const char& input);
    171171
    172             void buttonHeld  (const KeyEvent& evt) override;
    173             void processKey   (const KeyEvent& evt);
     172            virtual void buttonHeld (const KeyEvent& evt) override;
     173            void processKey (const KeyEvent& evt);
    174174
    175             void keyboardUpdated(float dt) override;
     175            virtual void keyboardUpdated(float dt) override;
    176176
    177177            std::string buffer_;
  • code/branches/cpp11_v2/src/libraries/core/input/InputCommands.h

    r10817 r10845  
    7676    {
    7777    public:
    78         bool execute(float abs = 1.0f, float rel = 1.0f) override;
    79         CommandEvaluation* getEvaluation() override;
     78        virtual bool execute(float abs = 1.0f, float rel = 1.0f) override;
     79        virtual CommandEvaluation* getEvaluation() override;
    8080        virtual SimpleCommand* clone() override { return new SimpleCommand(*this); }
    8181
     
    104104    public:
    105105        ParamCommand() : scale_(1.0f), paramCommand_(nullptr) { }
    106         bool execute(float abs = 1.0f, float rel = 1.0f) override;
    107         CommandEvaluation* getEvaluation() override;
     106        virtual bool execute(float abs = 1.0f, float rel = 1.0f) override;
     107        virtual CommandEvaluation* getEvaluation() override;
    108108        virtual ParamCommand* clone() override { return new ParamCommand(*this); }
    109109
  • code/branches/cpp11_v2/src/libraries/core/input/InputDevice.h

    r10821 r10845  
    153153
    154154        //! Captures OIS events (which then get distributed to the derived class) and creates the button held events
    155         void update(const Clock& time) override
     155        virtual void update(const Clock& time) override
    156156        {
    157157            oisDevice_->capture();
     
    171171
    172172        //! Clears the list of pressed buttons and calls the derived class's method
    173         void clearBuffers() override
     173        virtual void clearBuffers() override
    174174        {
    175175            pressedButtons_.clear();
     
    180180        OISDeviceClass* getOISDevice()   { return this->oisDevice_; }
    181181        // Returns the name of the derived class as string
    182         std::string getClassName() const override { return DeviceClass::getClassNameImpl(); }
     182        virtual std::string getClassName() const override { return DeviceClass::getClassNameImpl(); }
    183183
    184184    protected:
  • code/branches/cpp11_v2/src/libraries/core/input/InputManager.h

    r10817 r10845  
    208208
    209209        // From WindowEventListener
    210         void windowFocusChanged(bool bFocus) override;
     210        virtual void windowFocusChanged(bool bFocus) override;
    211211
    212212    private: // variables
  • code/branches/cpp11_v2/src/libraries/core/input/InputState.h

    r10817 r10845  
    157157        ~InputState() { }
    158158
    159         void JoyStickQuantityChanged(const std::vector<JoyStick*>& joyStickList) override;
     159        virtual void JoyStickQuantityChanged(const std::vector<JoyStick*>& joyStickList) override;
    160160
    161161        //! Sets the priority (only to be used by the InputManager!)
  • code/branches/cpp11_v2/src/libraries/core/input/JoyStick.h

    r10817 r10845  
    7777
    7878    private:
    79         void calibrationStarted() override;
    80         void calibrationStopped() override;
     79        virtual void calibrationStarted() override;
     80        virtual void calibrationStopped() override;
    8181        void evaluateCalibration();
    8282
     
    8686
    8787        //! OIS event handler
    88         bool buttonPressed (const OIS::JoyStickEvent &arg, int button) override
     88        virtual bool buttonPressed (const OIS::JoyStickEvent &arg, int button) override
    8989        {
    9090            super::buttonPressed(static_cast<JoyStickButtonCode::ByEnum>(button));
     
    9393
    9494        //! OIS event handler
    95         bool buttonReleased(const OIS::JoyStickEvent &arg, int button) override
     95        virtual bool buttonReleased(const OIS::JoyStickEvent &arg, int button) override
    9696        {
    9797            super::buttonReleased(static_cast<JoyStickButtonCode::ByEnum>(button));
     
    9999        }
    100100
    101         bool axisMoved     (const OIS::JoyStickEvent &arg, int axis) override;
    102         bool sliderMoved   (const OIS::JoyStickEvent &arg, int id) override;
    103         bool povMoved      (const OIS::JoyStickEvent &arg, int id) override;
     101        virtual bool axisMoved     (const OIS::JoyStickEvent &arg, int axis) override;
     102        virtual bool sliderMoved   (const OIS::JoyStickEvent &arg, int id) override;
     103        virtual bool povMoved      (const OIS::JoyStickEvent &arg, int id) override;
    104104        //! OIS event handler (don't remove that because of OIS version issues!)
    105         bool vector3Moved  (const OIS::JoyStickEvent &arg, int id) override { return true; }
     105        virtual bool vector3Moved  (const OIS::JoyStickEvent &arg, int id) override { return true; }
    106106
    107107        //! Returns the class name as string
  • code/branches/cpp11_v2/src/libraries/core/input/KeyBinder.h

    r10821 r10845  
    8686        virtual void JoyStickQuantityChanged(const std::vector<JoyStick*>& joyStickList) override;
    8787
    88         void allDevicesUpdated(float dt) override;
    89         void mouseUpdated(float dt) override;
    90         void joyStickUpdated(unsigned int joyStick, float dt) override;
     88        virtual void allDevicesUpdated(float dt) override;
     89        virtual void mouseUpdated(float dt) override;
     90        virtual void joyStickUpdated(unsigned int joyStick, float dt) override;
    9191        // internal
    9292        void tickHalfAxis(HalfAxis& halfAxis);
    9393
    94         void buttonPressed (const KeyEvent& evt) override;
    95         void buttonReleased(const KeyEvent& evt) override;
    96         void buttonHeld    (const KeyEvent& evt) override;
    97 
    98         void buttonPressed (MouseButtonCode::ByEnum button) override;
    99         void buttonReleased(MouseButtonCode::ByEnum button) override;
    100         void buttonHeld    (MouseButtonCode::ByEnum button) override;
    101         void mouseMoved    (IntVector2 abs, IntVector2 rel, IntVector2 clippingSize) override;
    102         void mouseScrolled (int abs, int rel) override;
    103 
    104         void buttonPressed (unsigned int device, JoyStickButtonCode::ByEnum button) override;
    105         void buttonReleased(unsigned int device, JoyStickButtonCode::ByEnum button) override;
    106         void buttonHeld    (unsigned int device, JoyStickButtonCode::ByEnum button) override;
    107         void axisMoved     (unsigned int device, unsigned int axis, float value) override;
     94        virtual void buttonPressed (const KeyEvent& evt) override;
     95        virtual void buttonReleased(const KeyEvent& evt) override;
     96        virtual void buttonHeld    (const KeyEvent& evt) override;
     97
     98        virtual void buttonPressed (MouseButtonCode::ByEnum button) override;
     99        virtual void buttonReleased(MouseButtonCode::ByEnum button) override;
     100        virtual void buttonHeld    (MouseButtonCode::ByEnum button) override;
     101        virtual void mouseMoved    (IntVector2 abs, IntVector2 rel, IntVector2 clippingSize) override;
     102        virtual void mouseScrolled (int abs, int rel) override;
     103
     104        virtual void buttonPressed (unsigned int device, JoyStickButtonCode::ByEnum button) override;
     105        virtual void buttonReleased(unsigned int device, JoyStickButtonCode::ByEnum button) override;
     106        virtual void buttonHeld    (unsigned int device, JoyStickButtonCode::ByEnum button) override;
     107        virtual void axisMoved     (unsigned int device, unsigned int axis, float value) override;
    108108
    109109    protected: // variables
  • code/branches/cpp11_v2/src/libraries/core/input/KeyDetector.h

    r10817 r10845  
    5151
    5252        void callback(const std::string& name);
    53         void JoyStickQuantityChanged(const std::vector<JoyStick*>& joyStickList) override;
     53        virtual void JoyStickQuantityChanged(const std::vector<JoyStick*>& joyStickList) override;
    5454        void assignCommands();
    5555
  • code/branches/cpp11_v2/src/libraries/core/input/Keyboard.h

    r10817 r10845  
    7575        }
    7676
    77         bool keyPressed(const OIS::KeyEvent& arg) override;
    78         bool keyReleased(const OIS::KeyEvent& arg) override;
     77        virtual bool keyPressed(const OIS::KeyEvent& arg) override;
     78        virtual bool keyReleased(const OIS::KeyEvent& arg) override;
    7979
    8080        //! Returns the class name as string
  • code/branches/cpp11_v2/src/libraries/core/input/Mouse.h

    r10817 r10845  
    7474    private:
    7575        //! OIS event handler
    76         bool mousePressed(const OIS::MouseEvent &arg, OIS::MouseButtonID id) override
     76        virtual bool mousePressed(const OIS::MouseEvent &arg, OIS::MouseButtonID id) override
    7777        {
    7878            super::buttonPressed(static_cast<MouseButtonCode::ByEnum>(id));
     
    8181
    8282        //! OIS event handler
    83         bool mouseReleased(const OIS::MouseEvent &arg, OIS::MouseButtonID id) override
     83        virtual bool mouseReleased(const OIS::MouseEvent &arg, OIS::MouseButtonID id) override
    8484        {
    8585            super::buttonReleased(static_cast<MouseButtonCode::ByEnum>(id));
     
    8787        }
    8888
    89         bool mouseMoved(const OIS::MouseEvent &arg) override;
     89        virtual bool mouseMoved(const OIS::MouseEvent &arg) override;
    9090
    91         void windowResized(unsigned int newWidth, unsigned int newHeight) override;
     91        virtual void windowResized(unsigned int newWidth, unsigned int newHeight) override;
    9292
    9393        // Returns the class name as string
Note: See TracChangeset for help on using the changeset viewer.