From 4875a3dd9b183dcd2256e2abfc4ccf7484c233b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Frings-F=C3=BCrst?= Date: Wed, 7 Dec 2022 13:17:14 +0100 Subject: New upstream version 4.0.2 --- docs/doxygen/html/xbtblmgr_8h_source.html | 150 ++++++++++++++++++++++++++++++ 1 file changed, 150 insertions(+) create mode 100644 docs/doxygen/html/xbtblmgr_8h_source.html (limited to 'docs/doxygen/html/xbtblmgr_8h_source.html') diff --git a/docs/doxygen/html/xbtblmgr_8h_source.html b/docs/doxygen/html/xbtblmgr_8h_source.html new file mode 100644 index 0000000..566867f --- /dev/null +++ b/docs/doxygen/html/xbtblmgr_8h_source.html @@ -0,0 +1,150 @@ + + + + + + + +Xbase64: /mnt/1Tdata/xbase/xbase64-4.0.2/src/include/xbtblmgr.h Source File + + + + + + + + + +
+
+ + + + + + +
+
Xbase64 4.0.1 +
+
C++ Library for handling Xbase (DBF) format type files
+
+
+ + + + + + + + +
+
+ + +
+ +
+ + +
+
+
xbtblmgr.h
+
+
+Go to the documentation of this file.
1/* xbtblmgr.h
+
2
+
3XBase64 Software Library
+
4
+
5Copyright (c) 1997,2003,2014,2022 Gary A Kunkel
+
6
+
7The xb64 software library is covered under the terms of the GPL Version 3, 2007 license.
+
8
+
9Email Contact:
+
10
+
11 XDB-devel@lists.sourceforge.net
+
12 XDB-users@lists.sourceforge.net
+
13
+
14This class manages a list of open tables, open indices are connected to the open tables
+
15
+
16*/
+
17
+
18
+
19#ifndef __XB_XBMGR_H__
+
20#define __XB_XBMGR_H__
+
21
+
22#ifdef CMAKE_COMPILER_IS_GNUCC
+
23#pragma interface
+
24#endif
+
25
+
26namespace xb{
+
27
+
28class XBDLLEXPORT xbDbf;
+
29
+
30/* this structure is a linked list of open tables */
+
31struct XBDLLEXPORT xbTblList{
+ +
33 xbString *psTblName; /* Name of table - same table can be opened multiple times, but must have unique alias */
+
34 xbString *psTblAlias; /* TblAliasName must be unique */
+ +
36};
+
37
+
38class XBDLLEXPORT xbTblMgr : public xbSsv {
+
39 public:
+
40 xbTblMgr();
+
41 ~xbTblMgr();
+
42 xbInt16 AddTblToTblList ( xbDbf *d, const xbString &sTblName );
+
43 xbInt16 AddTblToTblList ( xbDbf *d, const xbString &sTblName, const xbString &sTblAlias );
+
44 xbInt16 DisplayTableList () const;
+
45 xbDbf * GetDbfPtr ( const xbString &sTblAlias ) const;
+
46 xbDbf * GetDbfPtr ( xbInt16 sItemNo ) const;
+
47 xbInt16 GetOpenTableCount () const;
+
48 xbInt16 RemoveTblFromTblList ( const xbString &sTblAlias );
+
49 xbInt16 RemoveTblFromTblList ( xbDbf *d );
+
50
+
51 protected:
+
52
+
53 private:
+
54 xbTblList * TblList; // List of open database tables
+
55 xbInt16 iOpenTableCount; // Number of open tables
+
56
+
57};
+
58
+
59} /* namespace xb */
+
60
+
61#endif /* __XB_XBMGR_H__ */
+
Base class for handling dbf files/tables.
Definition: xbdbf.h:150
+
Class for handling shared system variables.
Definition: xbssv.h:59
+
Class for handling string data.
Definition: xbstring.h:50
+
Definition: xbtblmgr.h:38
+
Definition: xbdate.cpp:19
+
Definition: xbtblmgr.h:31
+
xbString * psTblName
Definition: xbtblmgr.h:33
+
xbDbf * pDbf
Definition: xbtblmgr.h:35
+
xbTblList * pNext
Definition: xbtblmgr.h:32
+
xbString * psTblAlias
Definition: xbtblmgr.h:34
+
+ + + + -- cgit v1.2.3