Skip to content
Snippets Groups Projects
Commit cde3fcbd authored by Sean Radigan's avatar Sean Radigan
Browse files

Got rid of some compiler warnings about override

parent 8b0dc825
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ public:
/// \brief !! This function does not clone!, it simply returns a pointer...this is dangerous
virtual std::shared_ptr<smSceneObject> clone() override;
virtual void init();
virtual void init() override;
public:
//fem objetc has two representations: surface and volume
......
......@@ -39,19 +39,19 @@ public:
smVegaFemSimulator(std::shared_ptr<smErrorLog> p_errorLog);
/// \brief start the job
virtual void beginSim();
virtual void beginSim() override;
/// \brief !!
virtual void initCustom();
virtual void initCustom() override;
/// \brief implement the deformation computation through fem here
virtual void run();
virtual void run() override;
/// \breif end the job
void endSim();
void endSim() override;
/// \brief synchronize the buffers in the object..do not call by yourself.
void syncBuffers();
void syncBuffers() override;
/// \brief handle the keyboard and haptic button press events
void handleEvent(std::shared_ptr<smtk::Event::smEvent> p_event) override;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment