summaryrefslogtreecommitdiff
path: root/sc/source/filter/starcalc/collect.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-02-08 21:43:45 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-02-08 21:45:27 -0500
commitc919c1279dc35e8a05bada83d0b33a8b830e6867 (patch)
treede4629f933406d9c446ca9aa72031492fe2fbf84 /sc/source/filter/starcalc/collect.hxx
parent2d4d52e0fbad81a960b81a94694ba4449cb71433 (diff)
Moved ScCollection under filter/starcalc.
That's the only place where this class is still used.
Diffstat (limited to 'sc/source/filter/starcalc/collect.hxx')
-rw-r--r--sc/source/filter/starcalc/collect.hxx73
1 files changed, 73 insertions, 0 deletions
diff --git a/sc/source/filter/starcalc/collect.hxx b/sc/source/filter/starcalc/collect.hxx
new file mode 100644
index 000000000000..6444efd4ad14
--- /dev/null
+++ b/sc/source/filter/starcalc/collect.hxx
@@ -0,0 +1,73 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*************************************************************************
+ *
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
+ *
+ * Copyright 2000, 2010 Oracle and/or its affiliates.
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * This file is part of OpenOffice.org.
+ *
+ * OpenOffice.org is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License version 3
+ * only, as published by the Free Software Foundation.
+ *
+ * OpenOffice.org is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License version 3 for more details
+ * (a copy is included in the LICENSE file that accompanied this code).
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * version 3 along with OpenOffice.org. If not, see
+ * <http://www.openoffice.org/license.html>
+ * for a copy of the LGPLv3 License.
+ *
+ ************************************************************************/
+
+#ifndef SC_COLLECT_HXX
+#define SC_COLLECT_HXX
+
+#include "sal/types.h"
+
+class ScDataObject
+{
+public:
+ ScDataObject() {}
+ virtual ~ScDataObject();
+ virtual ScDataObject* Clone() const = 0;
+};
+
+class ScCollection : public ScDataObject
+{
+protected:
+ sal_uInt16 nCount;
+ sal_uInt16 nLimit;
+ sal_uInt16 nDelta;
+ ScDataObject** pItems;
+public:
+ ScCollection(sal_uInt16 nLim = 4, sal_uInt16 nDel = 4);
+ ScCollection(const ScCollection& rCollection);
+ virtual ~ScCollection();
+
+ virtual ScDataObject* Clone() const;
+
+ void AtFree(sal_uInt16 nIndex);
+ void Free(ScDataObject* pScDataObject);
+ void FreeAll();
+
+ sal_Bool AtInsert(sal_uInt16 nIndex, ScDataObject* pScDataObject);
+ virtual sal_Bool Insert(ScDataObject* pScDataObject);
+
+ ScDataObject* At(sal_uInt16 nIndex) const;
+ virtual sal_uInt16 IndexOf(ScDataObject* pScDataObject) const;
+ sal_uInt16 GetCount() const;
+
+ ScDataObject* operator[]( const sal_uInt16 nIndex) const {return At(nIndex);}
+ ScCollection& operator=( const ScCollection& rCol );
+};
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */