DbStruct Pile   version 0.0.1
This pile contains classes that can be used to
dbtable.h
Go to the documentation of this file.
1 
10 #ifndef GUARD_DBTABLE_H_INCLUDE
11 #define GUARD_DBTABLE_H_INCLUDE
12 
13 #include <dbstruct/dbstruct-config.h>
14 #include <dbstruct/DbTaew.h>
15 #include <dbstruct/dbcolumn.h>
16 
17 class QSqlDatabase;
18 class QSqlQuery;
19 class QSqlRecord;
20 
22 class DBSTRUCT_EXPORT DbTable : public DbTaew {
23 
24 public:
25 
27  DbTable ();
28 
30  virtual ~DbTable();
31 
33  virtual Type
34  type () const {
35  return DBO_TABLE;
36  }
37 
38 protected:
39 
40 private:
41 };
42 
43 #endif // GUARD_DBTABLE_H_INCLUDE
Declarations for DbColumn class.
Declarations for DbTaew class.
A table in a database.
Definition: dbtable.h:22
Type
The types of objects that use this class as a base.
Definition: dbobject.h:33
virtual Type type() const
The type of this object.
Definition: dbtable.h:34
A table or view in a database.
Definition: dbtaew.h:24
Definition: dbobject.h:39