From dcb32a33a32665a6fa54df224fcfb2efad411567 Mon Sep 17 00:00:00 2001 From: Jens Carl Date: Fri, 30 May 2014 23:30:03 +0000 Subject: fdo#68849: Add header guards to all include files Added header guards to files in directory sw/ Change-Id: I5859f986c6f954d41a7940dc9ae8febaa714d34f Reviewed-on: https://gerrit.libreoffice.org/9587 Reviewed-by: Thomas Arnhold Tested-by: Thomas Arnhold --- sw/inc/IDocumentStylePoolAccess.hxx | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) (limited to 'sw/inc/IDocumentStylePoolAccess.hxx') diff --git a/sw/inc/IDocumentStylePoolAccess.hxx b/sw/inc/IDocumentStylePoolAccess.hxx index fcf3e1cbd2da..81ec03587e27 100644 --- a/sw/inc/IDocumentStylePoolAccess.hxx +++ b/sw/inc/IDocumentStylePoolAccess.hxx @@ -17,23 +17,23 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ - #ifndef INCLUDED_SW_INC_IDOCUMENTSTYLEPOOLACCESS_HXX - #define INCLUDED_SW_INC_IDOCUMENTSTYLEPOOLACCESS_HXX +#ifndef INCLUDED_SW_INC_IDOCUMENTSTYLEPOOLACCESS_HXX +#define INCLUDED_SW_INC_IDOCUMENTSTYLEPOOLACCESS_HXX - #include +#include - class SwTxtFmtColl; - class SwCharFmt; - class SwFmt; - class SwFrmFmt; - class SwNumRule; - class SwPageDesc; +class SwTxtFmtColl; +class SwCharFmt; +class SwFmt; +class SwFrmFmt; +class SwNumRule; +class SwPageDesc; - /** Access to the style pool +/** Access to the style pool */ - class IDocumentStylePoolAccess - { - public: +class IDocumentStylePoolAccess +{ +public: /** Return "Auto-Collection with ID. Create, if it does not yet exist. @@ -64,7 +64,7 @@ virtual bool IsPoolFmtUsed( sal_uInt16 nId ) const = 0; virtual bool IsPoolPageDescUsed( sal_uInt16 nId ) const = 0; - protected: +protected: virtual ~IDocumentStylePoolAccess() {}; }; -- cgit