summaryrefslogtreecommitdiffstats
path: root/sw/inc/IDocumentLineNumberAccess.hxx
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2014-05-30 23:30:03 +0000
committerThomas Arnhold <thomas@arnhold.org>2014-06-01 16:16:29 +0000
commitdcb32a33a32665a6fa54df224fcfb2efad411567 (patch)
tree4b13b4476eb89ad6730a7dd4fad6b19c7f9f2bd7 /sw/inc/IDocumentLineNumberAccess.hxx
parentfdo#68849: Add header guards to all include files (diff)
downloadcore-dcb32a33a32665a6fa54df224fcfb2efad411567.tar.gz
core-dcb32a33a32665a6fa54df224fcfb2efad411567.zip
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/IDocumentLineNumberAccess.hxx')
-rw-r--r--sw/inc/IDocumentLineNumberAccess.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/IDocumentLineNumberAccess.hxx b/sw/inc/IDocumentLineNumberAccess.hxx
index 4ed4e9e97e6a..b63d004485a8 100644
--- a/sw/inc/IDocumentLineNumberAccess.hxx
+++ b/sw/inc/IDocumentLineNumberAccess.hxx
@@ -17,23 +17,23 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
- #ifndef INCLUDED_SW_INC_IDOCUMENTLINENUMBERACCESS_HXX
- #define INCLUDED_SW_INC_IDOCUMENTLINENUMBERACCESS_HXX
+#ifndef INCLUDED_SW_INC_IDOCUMENTLINENUMBERACCESS_HXX
+#define INCLUDED_SW_INC_IDOCUMENTLINENUMBERACCESS_HXX
- #include <sal/types.h>
+#include <sal/types.h>
class SwLineNumberInfo;
- /** Access to the line number information
+/** Access to the line number information
*/
- class IDocumentLineNumberAccess
- {
- public:
+class IDocumentLineNumberAccess
+{
+public:
virtual const SwLineNumberInfo& GetLineNumberInfo() const = 0;
virtual void SetLineNumberInfo(const SwLineNumberInfo& rInfo) = 0;
- protected:
+protected:
virtual ~IDocumentLineNumberAccess() {};
};