diff options
author | Jens Carl <j.carl43@gmx.de> | 2014-06-02 02:31:45 +0000 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-06-02 08:46:30 +0000 |
commit | 8e115c60081b245541408889295bc0c147091e0c (patch) | |
tree | 8fd046900bcc43d601037bbcb9cca35f7643a5f0 /sax | |
parent | 9d310ecfce3c2fc481b125e1493a534e2107a68e (diff) |
fdo#68849: Add header guards to all include files
added header guards for directories basebmp/, chart2/, cppuhelper/,
include/test/, io/test/, sax/test, shell/, writerfilter/, and xmlhelp/
Change-Id: I0e29a9b75c26d71f58aa98986b52f6d3b46015a6
Reviewed-on: https://gerrit.libreoffice.org/9615
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'sax')
-rw-r--r-- | sax/test/sax/factory.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sax/test/sax/factory.hxx b/sax/test/sax/factory.hxx index 6a5e4d36ef93..58bcc2fbf7b0 100644 --- a/sax/test/sax/factory.hxx +++ b/sax/test/sax/factory.hxx @@ -16,6 +16,10 @@ * 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_SAX_TEST_SAX_FACTORY_HXX +#define INCLUDED_SAX_TEST_SAX_FACTORY_HXX + #include <rtl/strbuf.hxx> namespace sax_test { @@ -79,4 +83,6 @@ Sequence<OUString> OSaxWriterTest_getSupportedServiceNames( ) throw(); } \ ((void)0) +#endif // INCLUDED_SAX_TEST_SAX_FACTORY_HXX + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |