diff options
author | Thorsten Behrens <thb@openoffice.org> | 2003-11-10 14:10:57 +0000 |
---|---|---|
committer | Thorsten Behrens <thb@openoffice.org> | 2003-11-10 14:10:57 +0000 |
commit | 5d6413171a0f9d92a3cf331ab05b18e06c98fde2 (patch) | |
tree | bb06c9f7e4d0d0d7188676dc0d775fe7b996c4ca /basegfx/source/matrix | |
parent | fd1976f8025e13124d28c78358cb29be99a8074a (diff) |
Moved template declaration to internal namespace
Diffstat (limited to 'basegfx/source/matrix')
-rw-r--r-- | basegfx/source/matrix/b2dhommatrix.cxx | 24 | ||||
-rw-r--r-- | basegfx/source/matrix/b3dhommatrix.cxx | 24 |
2 files changed, 24 insertions, 24 deletions
diff --git a/basegfx/source/matrix/b2dhommatrix.cxx b/basegfx/source/matrix/b2dhommatrix.cxx index f9b4b3e48554..d2175b502db3 100644 --- a/basegfx/source/matrix/b2dhommatrix.cxx +++ b/basegfx/source/matrix/b2dhommatrix.cxx @@ -2,9 +2,9 @@ * * $RCSfile: b2dhommatrix.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: aw $ $Date: 2003-11-05 12:25:51 $ + * last change: $Author: thb $ $Date: 2003-11-10 15:10:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -79,20 +79,20 @@ #include <basegfx/tuple/b2dtuple.hxx> #endif -class Impl2DHomMatrix : public ImplHomMatrixTemplate< 3 > -{ -}; - -static Impl2DHomMatrix& get2DIdentityMatrix() -{ - static Impl2DHomMatrix maStatic2DIdentityHomMatrix; - return maStatic2DIdentityHomMatrix; -} - namespace basegfx { namespace matrix { + class Impl2DHomMatrix : public ::basegfx::internal::ImplHomMatrixTemplate< 3 > + { + }; + + static Impl2DHomMatrix& get2DIdentityMatrix() + { + static Impl2DHomMatrix maStatic2DIdentityHomMatrix; + return maStatic2DIdentityHomMatrix; + } + void B2DHomMatrix::implPrepareChange() { if(mpM->getRefCount()) diff --git a/basegfx/source/matrix/b3dhommatrix.cxx b/basegfx/source/matrix/b3dhommatrix.cxx index 232ff46c7c77..dee47579741f 100644 --- a/basegfx/source/matrix/b3dhommatrix.cxx +++ b/basegfx/source/matrix/b3dhommatrix.cxx @@ -2,9 +2,9 @@ * * $RCSfile: b3dhommatrix.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: aw $ $Date: 2003-11-05 12:25:52 $ + * last change: $Author: thb $ $Date: 2003-11-10 15:10:57 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -71,20 +71,20 @@ #include <basegfx/vector/b3dvector.hxx> #endif -class Impl3DHomMatrix : public ImplHomMatrixTemplate< 4 > -{ -}; - -static Impl3DHomMatrix& get3DIdentityMatrix() -{ - static Impl3DHomMatrix maStatic3DIdentityHomMatrix; - return maStatic3DIdentityHomMatrix; -} - namespace basegfx { namespace matrix { + class Impl3DHomMatrix : public ::basegfx::internal::ImplHomMatrixTemplate< 4 > + { + }; + + static Impl3DHomMatrix& get3DIdentityMatrix() + { + static Impl3DHomMatrix maStatic3DIdentityHomMatrix; + return maStatic3DIdentityHomMatrix; + } + void B3DHomMatrix::implPrepareChange() { if(mpM->getRefCount()) |