diff options
author | Ocke Janssen <oj@openoffice.org> | 2002-07-04 05:32:47 +0000 |
---|---|---|
committer | Ocke Janssen <oj@openoffice.org> | 2002-07-04 05:32:47 +0000 |
commit | bde27e9ead97b7f5b34b93e6fdc7c7deabcc9f7b (patch) | |
tree | 20eb7111b6f0c5c4355fdd5e31aed181965ee355 /connectivity/source | |
parent | 1621d54fb263c8ad493d069c450f974100af4e93 (diff) |
#99549# insert c and dtor
Diffstat (limited to 'connectivity/source')
-rw-r--r-- | connectivity/source/commontools/TSortIndex.cxx | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/connectivity/source/commontools/TSortIndex.cxx b/connectivity/source/commontools/TSortIndex.cxx index 329fd994c573..4c096e7856a7 100644 --- a/connectivity/source/commontools/TSortIndex.cxx +++ b/connectivity/source/commontools/TSortIndex.cxx @@ -2,9 +2,9 @@ * * $RCSfile: TSortIndex.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: oj $ $Date: 2001-11-09 07:15:37 $ + * last change: $Author: oj $ $Date: 2002-07-04 06:32:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -188,4 +188,22 @@ sal_Int32 OSortIndex::GetValue(sal_Int32 nPos) const return m_aKeyValues[nPos-1].first; } // ----------------------------------------------------------------------------- +OKeyValue::OKeyValue() +{ +} +// ----------------------------------------------------------------------------- +OKeyValue::OKeyValue(sal_Int32 nVal) +: m_nValue(nVal) +{ +} +// ----------------------------------------------------------------------------- +OKeyValue::~OKeyValue() +{ +} +// ----------------------------------------------------------------------------- +OKeyValue* OKeyValue::createKeyValue(sal_Int32 _nVal) +{ + return new OKeyValue(_nVal); +} +// ----------------------------------------------------------------------------- |