summaryrefslogtreecommitdiff
path: root/embedserv
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2014-05-29 21:12:22 +0000
committerNoel Grandin <noelgrandin@gmail.com>2014-05-30 01:44:03 -0500
commit3ddb928061531a8742565bfa91c0aaa76ef88863 (patch)
treef6e5e44d70fdc602c68581439b04e3bb38244c24 /embedserv
parent54b85bf51e42f0e74dfaab40dc0a6923dd1f876b (diff)
fdo#68849: Add header guards to all include files
Added header guards to files in directories desktop/*, and embedserv/* Change-Id: Idaffcc0539b84962ed7c132cb20078512799d433 Reviewed-on: https://gerrit.libreoffice.org/9556 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'embedserv')
-rw-r--r--embedserv/source/inc/syswinwrapper.hxx4
-rw-r--r--embedserv/source/inprocserv/advisesink.hxx5
2 files changed, 9 insertions, 0 deletions
diff --git a/embedserv/source/inc/syswinwrapper.hxx b/embedserv/source/inc/syswinwrapper.hxx
index e596427d378b..bde2efce0bf0 100644
--- a/embedserv/source/inc/syswinwrapper.hxx
+++ b/embedserv/source/inc/syswinwrapper.hxx
@@ -17,6 +17,8 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_EMBEDSERV_SOURCE_INC_SYSWINWRAPPER_HXX
+#define INCLUDED_EMBEDSERV_SOURCE_INC_SYSWINWRAPPER_HXX
#include <windows.h>
@@ -168,4 +170,6 @@ protected:
}
+#endif // INCLUDED_EMBEDSERV_SOURCE_INC_SYSWINWRAPPER_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/embedserv/source/inprocserv/advisesink.hxx b/embedserv/source/inprocserv/advisesink.hxx
index 5e3d67055a47..2dc6d7739868 100644
--- a/embedserv/source/inprocserv/advisesink.hxx
+++ b/embedserv/source/inprocserv/advisesink.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_EMBEDSERV_SOURCE_INPROCSERV_ADVISESINK_HXX
+#define INCLUDED_EMBEDSERV_SOURCE_INPROCSERV_ADVISESINK_HXX
+
#include <windows.h>
#include "smartpointer.hxx"
@@ -85,4 +88,6 @@ public:
}; // namespace advisesink
+#endif // INCLUDED_EMBEDSERV_SOURCE_INPROCSERV_ADVISESINK_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */