summaryrefslogtreecommitdiff
path: root/connectivity/source/inc/dbase/DIndexIter.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/inc/dbase/DIndexIter.hxx')
-rw-r--r--connectivity/source/inc/dbase/DIndexIter.hxx60
1 files changed, 30 insertions, 30 deletions
diff --git a/connectivity/source/inc/dbase/DIndexIter.hxx b/connectivity/source/inc/dbase/DIndexIter.hxx
index 2de327be1138..353f1081b9db 100644
--- a/connectivity/source/inc/dbase/DIndexIter.hxx
+++ b/connectivity/source/inc/dbase/DIndexIter.hxx
@@ -24,43 +24,43 @@
#include <dbase/dindexnode.hxx>
namespace connectivity::dbase
- {
+{
- // IndexIterator
+ // IndexIterator
- class OIndexIterator final
- {
- file::OBoolOperator* m_pOperator;
- const file::OOperand* m_pOperand;
- rtl::Reference<ODbaseIndex> m_xIndex;
- ONDXPagePtr m_aRoot,
- m_aCurLeaf;
- sal_uInt16 m_nCurNode;
+ class OIndexIterator final
+ {
+ file::OBoolOperator* m_pOperator;
+ const file::OOperand* m_pOperand;
+ rtl::Reference<ODbaseIndex> m_xIndex;
+ ONDXPagePtr m_aRoot,
+ m_aCurLeaf;
+ sal_uInt16 m_nCurNode;
- sal_uInt32 Find(bool bFirst);
- sal_uInt32 GetCompare(bool bFirst);
- sal_uInt32 GetLike(bool bFirst);
- sal_uInt32 GetNull(bool bFirst);
- sal_uInt32 GetNotNull(bool bFirst);
+ sal_uInt32 Find(bool bFirst);
+ sal_uInt32 GetCompare(bool bFirst);
+ sal_uInt32 GetLike(bool bFirst);
+ sal_uInt32 GetNull(bool bFirst);
+ sal_uInt32 GetNotNull(bool bFirst);
- ONDXKey* GetFirstKey(ONDXPage* pPage,
- const file::OOperand& rKey);
- ONDXKey* GetNextKey();
+ ONDXKey* GetFirstKey(ONDXPage* pPage,
+ const file::OOperand& rKey);
+ ONDXKey* GetNextKey();
- public:
- OIndexIterator(ODbaseIndex* pInd)
- :m_pOperator(nullptr)
- ,m_pOperand(nullptr)
- ,m_xIndex(pInd)
- ,m_nCurNode(NODE_NOTFOUND)
- {
- }
+ public:
+ OIndexIterator(ODbaseIndex* pInd)
+ :m_pOperator(nullptr)
+ ,m_pOperand(nullptr)
+ ,m_xIndex(pInd)
+ ,m_nCurNode(NODE_NOTFOUND)
+ {
+ }
- ~OIndexIterator();
- sal_uInt32 First();
- sal_uInt32 Next();
+ ~OIndexIterator();
+ sal_uInt32 First();
+ sal_uInt32 Next();
- };
+ };
}