summaryrefslogtreecommitdiff
path: root/rsc
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2014-05-30 20:32:57 +0000
committerThomas Arnhold <thomas@arnhold.org>2014-06-01 16:05:20 +0000
commit7610a80ad1a47f2401b4d6aca9d4f77e5be7c630 (patch)
treee4a38b324251d1f419e51b17b8b1672646abe3fa /rsc
parentd9f93ced823ee7d695cdd39d5124b67e07886ed7 (diff)
fdo#68849: Add header guards to all include files
Added header guards to files in directories l10ntools/, lotuswordpro/, and rsc/ Change-Id: I9c034d4bb5c92d78378bda4658d43a8b603d5281 Reviewed-on: https://gerrit.libreoffice.org/9581 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'rsc')
-rw-r--r--rsc/inc/rscarray.hxx3
-rw-r--r--rsc/inc/rsclex.hxx5
2 files changed, 7 insertions, 1 deletions
diff --git a/rsc/inc/rscarray.hxx b/rsc/inc/rscarray.hxx
index fc40e3fbf357..dd7b511884e9 100644
--- a/rsc/inc/rscarray.hxx
+++ b/rsc/inc/rscarray.hxx
@@ -16,6 +16,7 @@
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+
#ifndef INCLUDED_RSC_INC_RSCARRAY_HXX
#define INCLUDED_RSC_INC_RSCARRAY_HXX
@@ -119,6 +120,6 @@ public:
virtual RSCCLASS_TYPE GetClassType() const SAL_OVERRIDE;
};
-#endif //_RSCARRAY
+#endif // INCLUDED_RSC_INC_RSCARRAY_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/rsc/inc/rsclex.hxx b/rsc/inc/rsclex.hxx
index 3ec3a181ede8..46cd468a7d84 100644
--- a/rsc/inc/rsclex.hxx
+++ b/rsc/inc/rsclex.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef INCLUDED_RSC_INC_RSCLEX_HXX
+#define INCLUDED_RSC_INC_RSCLEX_HXX
+
#include <boost/unordered_set.hpp>
#include <rtl/strbuf.hxx>
#include <rtl/string.hxx>
@@ -112,4 +115,6 @@ extern RscExpression * pExp;
extern ObjectStack S;
extern StringContainer* pStringContainer;
+#endif // INCLUDED_RSC_INC_RSCLEX_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */