]> git.siccegge.de Git - frida/frida.git/commitdiff
Consistently use include-guards
authorChristoph Egger <christoph@christoph-egger.org>
Sat, 3 Jan 2015 17:51:56 +0000 (18:51 +0100)
committerChristoph Egger <christoph@christoph-egger.org>
Sat, 3 Jan 2015 17:51:56 +0000 (18:51 +0100)
src/gui/Mainwindow.hxx
src/gui/qt.hxx

index 9ce1b6bdbb8350e426bc95ff0adaf2d09390464d..7f6d63e5c04d2d7e80f596eed4a26ca62d3aa025 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef INCLUDE__Mainwindow_hxx_
+#define INCLUDE__Mainwindow_hxx_
+
 #include <memory>
 #include <map>
 #include <QTextEdit>
@@ -38,3 +41,5 @@ private Q_SLOTS:
     void quit();
     void open();
 };
+
+#endif /* INCLUDE__Mainwindow_hxx_ */
index 5ef2f3d4fef2e0cb4cfbb5606c8b34c42f8010cc..7397b23db338e769e76a11fca6bc2565e562f6ce 100644 (file)
@@ -1,3 +1,6 @@
+#ifndef INCLUDE__qt_hxx_
+#define INCLUDE__qt_hxx_
+
 #include <QAction>
 #include <QDockWidget>
 #include <QFileDialog>
@@ -19,3 +22,5 @@
 #include <QPushButton>
 #include <QLineEdit>
 #include <QLabel>
+
+#endif /* INCLUDE__qt_hxx_ */