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