mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3944 clang-tidy : Apply clang-tidy on caf
This commit is contained in:
@@ -50,14 +50,14 @@ class CeetronNavigation : public NavigationPolicy
|
||||
{
|
||||
public:
|
||||
CeetronNavigation();
|
||||
virtual ~CeetronNavigation();
|
||||
~CeetronNavigation() override;
|
||||
protected:
|
||||
// General navigation policy reimplememtation
|
||||
virtual void init();
|
||||
virtual bool handleInputEvent(QInputEvent* inputEvent);
|
||||
virtual void setView( const cvf::Vec3d& alongDirection, const cvf::Vec3d& upDirection );
|
||||
virtual cvf::Vec3d pointOfInterest();
|
||||
virtual void setPointOfInterest(cvf::Vec3d poi);
|
||||
void init() override;
|
||||
bool handleInputEvent(QInputEvent* inputEvent) override;
|
||||
void setView( const cvf::Vec3d& alongDirection, const cvf::Vec3d& upDirection ) override;
|
||||
cvf::Vec3d pointOfInterest() override;
|
||||
void setPointOfInterest(cvf::Vec3d poi) override;
|
||||
|
||||
// Ceetron navigation stuff
|
||||
void mouseMoveEvent(QMouseEvent* event);
|
||||
|
||||
Reference in New Issue
Block a user