summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2019-05-08 16:33:26 +0200
committerLuboš Luňák <l.lunak@collabora.com>2019-05-09 11:10:31 +0200
commitb4946d58eb07aac674574da466829ab19c126c69 (patch)
tree67b3fbf94810cad895bfe6ab9635d2d75f239723 /include
parent2f60d8d3b67508c9fef59971ae725a12463a420d (diff)
add missing include guards
Change-Id: I337c0f567112f95e2a1d762e511d5b632dd2892f Reviewed-on: https://gerrit.libreoffice.org/71997 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'include')
-rw-r--r--include/o3tl/temporary.hxx5
-rw-r--r--include/vcl/uitest/eventdescription.hxx5
-rw-r--r--include/vcl/uitest/factory.hxx5
-rw-r--r--include/vcl/uitest/logger.hxx5
-rw-r--r--include/vcl/uitest/uitest.hxx5
5 files changed, 25 insertions, 0 deletions
diff --git a/include/o3tl/temporary.hxx b/include/o3tl/temporary.hxx
index 476e934cb44a..7b6c9a1f9fc7 100644
--- a/include/o3tl/temporary.hxx
+++ b/include/o3tl/temporary.hxx
@@ -7,6 +7,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#ifndef INCLUDED_O3TL_TEMPORARY_HXX
+#define INCLUDED_O3TL_TEMPORARY_HXX
+
#include <sal/config.h>
namespace o3tl
@@ -19,4 +22,6 @@ template <typename T> constexpr T& temporary(T&& x) { return x; }
template <typename T> constexpr T& temporary(T&) = delete;
}
+#endif /* INCLUDED_O3TL_TEMPORARY_HXX */
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */
diff --git a/include/vcl/uitest/eventdescription.hxx b/include/vcl/uitest/eventdescription.hxx
index ed2b54f3439b..47bf9e117ef9 100644
--- a/include/vcl/uitest/eventdescription.hxx
+++ b/include/vcl/uitest/eventdescription.hxx
@@ -7,6 +7,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#ifndef INCLUDED_VCL_UITEST_EVENTDESCRIPTION_HXX
+#define INCLUDED_VCL_UITEST_EVENTDESCRIPTION_HXX
+
#include <rtl/ustring.hxx>
#include <map>
@@ -16,4 +19,6 @@ struct EventDescription
std::map<OUString, OUString> aParameters;
};
+#endif
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/uitest/factory.hxx b/include/vcl/uitest/factory.hxx
index da645f309b79..3319c5e18583 100644
--- a/include/vcl/uitest/factory.hxx
+++ b/include/vcl/uitest/factory.hxx
@@ -7,6 +7,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#ifndef INCLUDED_VCL_UITEST_FACTORY_HXX
+#define INCLUDED_VCL_UITEST_FACTORY_HXX
+
#include <memory>
#include <functional>
@@ -20,4 +23,6 @@ class UIObject;
typedef std::function<std::unique_ptr<UIObject>(vcl::Window*)> FactoryFunction;
+#endif
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/uitest/logger.hxx b/include/vcl/uitest/logger.hxx
index 89f7c72f693b..f707049040fe 100644
--- a/include/vcl/uitest/logger.hxx
+++ b/include/vcl/uitest/logger.hxx
@@ -7,6 +7,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#ifndef INCLUDED_VCL_UITEST_LOGGER_HXX
+#define INCLUDED_VCL_UITEST_LOGGER_HXX
+
#include <vcl/dllapi.h>
#include <tools/stream.hxx>
@@ -47,4 +50,6 @@ public:
};
+#endif
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/uitest/uitest.hxx b/include/vcl/uitest/uitest.hxx
index 00465b0ee1e8..14356b5b7487 100644
--- a/include/vcl/uitest/uitest.hxx
+++ b/include/vcl/uitest/uitest.hxx
@@ -7,6 +7,9 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
+#ifndef INCLUDED_VCL_UITEST_UITEST_HXX
+#define INCLUDED_VCL_UITEST_UITEST_HXX
+
#include <rtl/ustring.hxx>
#include <vcl/dllapi.h>
@@ -36,4 +39,6 @@ public:
static std::unique_ptr<UIObject> getFloatWindow();
};
+#endif
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */