summaryrefslogtreecommitdiff
path: root/basegfx
diff options
context:
space:
mode:
authorJens Carl <j.carl43@gmx.de>2014-05-29 20:43:55 +0000
committerNoel Grandin <noelgrandin@gmail.com>2014-05-30 01:43:33 -0500
commit54b85bf51e42f0e74dfaab40dc0a6923dd1f876b (patch)
tree7d4fe6a14ad0ca3af149b5f5554ba097a1a7a560 /basegfx
parent82e1456e9ae19cd536c11b2bdda7a79909269c15 (diff)
fdo#68849: Add header guards to all include files
Added header guards to files in directories avmedia/, basegfx/, chart2/, and connectivity/ Change-Id: I94ec438ec918ccef1c518edfd9ab4944e9e2961b Reviewed-on: https://gerrit.libreoffice.org/9555 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basegfx')
-rw-r--r--basegfx/source/workbench/gauss.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/basegfx/source/workbench/gauss.hxx b/basegfx/source/workbench/gauss.hxx
index 6cd63ce30691..160fe31522ad 100644
--- a/basegfx/source/workbench/gauss.hxx
+++ b/basegfx/source/workbench/gauss.hxx
@@ -38,6 +38,10 @@
@return true, if elimination succeeded.
*/
+
+#ifndef INCLUDED_BASEGFX_SOURCE_WORKBENCH_GAUSS_HXX
+#define INCLUDED_BASEGFX_SOURCE_WORKBENCH_GAUSS_HXX
+
template <class Matrix, typename BaseType>
bool eliminate( Matrix& matrix,
int rows,
@@ -163,4 +167,6 @@ bool solve( Matrix& matrix,
return false;
}
+#endif // INCLUDED_BASEGFX_SOURCE_WORKBENCH_GAUSS_HXX
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */