summaryrefslogtreecommitdiff
path: root/basegfx/inc/basegfx/range
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2005-11-02 12:55:39 +0000
committerKurt Zenker <kz@openoffice.org>2005-11-02 12:55:39 +0000
commit4b5aba906334d9959e95bf34a19accd0b83d7cf2 (patch)
treecd044b768479945c013a09202fa0780e189582e8 /basegfx/inc/basegfx/range
parent412a75790f51d3c5f12380503ece4f733aeef944 (diff)
INTEGRATION: CWS canvas02 (1.10.6); FILE MERGED
2005/10/08 13:07:17 thb 1.10.6.2: RESYNC: (1.10-1.11); FILE MERGED 2005/06/17 23:09:55 thb 1.10.6.1: #i48939# Overhauled and impreoved connected ranges (also slight speedup); added nested types to b2xrange (needed for the computeSetDifferences() template; added more basic type conversion methods to canvastools
Diffstat (limited to 'basegfx/inc/basegfx/range')
-rw-r--r--basegfx/inc/basegfx/range/basicrange.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/basegfx/inc/basegfx/range/basicrange.hxx b/basegfx/inc/basegfx/range/basicrange.hxx
index ffa1091fd996..2114624369ec 100644
--- a/basegfx/inc/basegfx/range/basicrange.hxx
+++ b/basegfx/inc/basegfx/range/basicrange.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: basicrange.hxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2005-09-07 20:34:40 $
+ * last change: $Author: kz $ $Date: 2005-11-02 13:55:39 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -58,6 +58,9 @@ namespace basegfx
T mnMaximum;
public:
+ typedef T ValueType;
+ typedef Traits TraitsType;
+
BasicRange() :
mnMinimum(Traits::initMin()),
mnMaximum(Traits::initMax())