summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-10-21 05:42:51 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-10-21 09:15:59 +0000
commit8fc6905674142c226a117a97a08cf0b24c9d4fc1 (patch)
tree4b32555fc44b1c84819bcc75bfd1451b57dd2e2b /basic
parentaa02102fe9d338eb7d0774bd54feeac2142506ac (diff)
fdo#68849 add some header guards
Change-Id: I9d25a58f22095689eccc0ac444c163d1e9bee69f Reviewed-on: https://gerrit.libreoffice.org/6364 Reviewed-by: Thomas Arnhold <thomas@arnhold.org> Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'basic')
-rw-r--r--basic/source/inc/basiccharclass.hxx5
-rw-r--r--basic/source/runtime/rtlproto.hxx5
2 files changed, 10 insertions, 0 deletions
diff --git a/basic/source/inc/basiccharclass.hxx b/basic/source/inc/basiccharclass.hxx
index 03801dc61f61..6923d2290adf 100644
--- a/basic/source/inc/basiccharclass.hxx
+++ b/basic/source/inc/basiccharclass.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef _BASIC_BASICCHARCLASS_HXX
+#define _BASIC_BASICCHARCLASS_HXX
+
#include <unotools/charclass.hxx>
#include <rtl/instance.hxx>
@@ -39,4 +42,6 @@ public:
class theBasicCharClass: public rtl::Static<BasicCharClass, theBasicCharClass> {};
+#endif
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/basic/source/runtime/rtlproto.hxx b/basic/source/runtime/rtlproto.hxx
index 7a6a9d84bea8..ffd0b478c16a 100644
--- a/basic/source/runtime/rtlproto.hxx
+++ b/basic/source/runtime/rtlproto.hxx
@@ -17,6 +17,9 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#ifndef _INCLUDED_BASIC_RTLPROTO_HXX_
+#define _INCLUDED_BASIC_RTLPROTO_HXX_
+
#include <basic/sbstar.hxx>
#include "sbtrace.hxx"
@@ -368,4 +371,6 @@ extern RTLFUNC(TraceCommand);
extern double Now_Impl();
extern void Wait_Impl( bool bDurationBased, SbxArray& rPar );
+#endif
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */