summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2CustomerTableIterator.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/T2CustomerTableIterator.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/T2DLL/T2CustomerTableIterator.h b/src/T2DLL/T2CustomerTableIterator.h
new file mode 100644
index 0000000..ba07778
--- /dev/null
+++ b/src/T2DLL/T2CustomerTableIterator.h
@@ -0,0 +1,14 @@
+#pragma once
+#include "common.h"
+
+class T2CustomerTableIterator {
+public:
+ T2CustomerTableIterator(const T2TenantMemberTableDef*);
+ ~T2CustomerTableIterator();
+ int Next(T2TenantMemberDef*&, unsigned int&);
+protected:
+ void CalcNextIndex();
+
+public:
+ T2CustomerTableIterator& operator=(const T2CustomerTableIterator&) {}
+};