diff options
author | Jens Carl <j.carl43@gmx.de> | 2014-05-30 23:30:03 +0000 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2014-06-01 16:16:29 +0000 |
commit | dcb32a33a32665a6fa54df224fcfb2efad411567 (patch) | |
tree | 4b13b4476eb89ad6730a7dd4fad6b19c7f9f2bd7 /sw/inc/IDocumentTimerAccess.hxx | |
parent | 6c3245fc69de59cb1de219203c489d891073ced9 (diff) |
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 <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Diffstat (limited to 'sw/inc/IDocumentTimerAccess.hxx')
-rw-r--r-- | sw/inc/IDocumentTimerAccess.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/sw/inc/IDocumentTimerAccess.hxx b/sw/inc/IDocumentTimerAccess.hxx index cde3d88b4c86..2cdb33e5ab7d 100644 --- a/sw/inc/IDocumentTimerAccess.hxx +++ b/sw/inc/IDocumentTimerAccess.hxx @@ -17,15 +17,15 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ - #ifndef INCLUDED_SW_INC_IDOCUMENTTIMERACCESS_HXX - #define INCLUDED_SW_INC_IDOCUMENTTIMERACCESS_HXX +#ifndef INCLUDED_SW_INC_IDOCUMENTTIMERACCESS_HXX +#define INCLUDED_SW_INC_IDOCUMENTTIMERACCESS_HXX - /** Manipulate background jobs of the document. It starts with a mode of +/** Manipulate background jobs of the document. It starts with a mode of 'started' and a block count of 0. */ - class IDocumentTimerAccess - { - public: +class IDocumentTimerAccess +{ +public: /** Set modus to 'start'. */ @@ -55,10 +55,10 @@ */ virtual void StartBackgroundJobs() = 0; - protected: +protected: virtual ~IDocumentTimerAccess() {}; - }; +}; - #endif // INCLUDED_SW_INC_IDOCUMENTTIMERACCESS_HXX +#endif // INCLUDED_SW_INC_IDOCUMENTTIMERACCESS_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |