mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-05 23:41:44 +00:00
added header-guard
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
#ifndef MESSAGELOGGER_H
|
||||
#define MESSAGELOGGER_H
|
||||
|
||||
#include <QObject>
|
||||
#include <string>
|
||||
|
||||
@@ -38,3 +41,5 @@ private:
|
||||
// Disable copy assignment operator for MessageLogger
|
||||
MessageLogger& operator=(const MessageLogger&) = delete;
|
||||
};
|
||||
|
||||
#endif // MESSAGELOGGER_H
|
||||
|
||||
@@ -1,3 +1,6 @@
|
||||
#ifndef MOUSEHANDLER_H
|
||||
#define MOUSEHANDLER_H
|
||||
|
||||
#include <osgViewer/Viewer>
|
||||
#include <osgGA/TrackballManipulator>
|
||||
|
||||
@@ -10,7 +13,9 @@ class MouseHandler : public osgGA::TrackballManipulator
|
||||
virtual bool handle(
|
||||
const osgGA::GUIEventAdapter& ea,
|
||||
const osgGA::GUIActionAdapter& aa
|
||||
);
|
||||
);
|
||||
private:
|
||||
osgViewer::Viewer* viewer;
|
||||
};
|
||||
|
||||
#endif // MOUSEHANDLER_H
|
||||
|
||||
Reference in New Issue
Block a user