From: Christoph Egger Date: Sat, 3 Jan 2015 17:51:56 +0000 (+0100) Subject: Consistently use include-guards X-Git-Tag: v0.1~147 X-Git-Url: https://git.siccegge.de//index.cgi?p=frida%2Ffrida.git;a=commitdiff_plain;h=9254f26b4470c13bed9f6c18c86bde98d809b64c;hp=379a273ffec1fefe8b6f9af3a959ae85eba17857 Consistently use include-guards --- diff --git a/src/gui/Mainwindow.hxx b/src/gui/Mainwindow.hxx index 9ce1b6b..7f6d63e 100644 --- a/src/gui/Mainwindow.hxx +++ b/src/gui/Mainwindow.hxx @@ -1,3 +1,6 @@ +#ifndef INCLUDE__Mainwindow_hxx_ +#define INCLUDE__Mainwindow_hxx_ + #include #include #include @@ -38,3 +41,5 @@ private Q_SLOTS: void quit(); void open(); }; + +#endif /* INCLUDE__Mainwindow_hxx_ */ diff --git a/src/gui/qt.hxx b/src/gui/qt.hxx index 5ef2f3d..7397b23 100644 --- a/src/gui/qt.hxx +++ b/src/gui/qt.hxx @@ -1,3 +1,6 @@ +#ifndef INCLUDE__qt_hxx_ +#define INCLUDE__qt_hxx_ + #include #include #include @@ -19,3 +22,5 @@ #include #include #include + +#endif /* INCLUDE__qt_hxx_ */