ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/DBS/Servers/AppServer/include/SingleTableInterface.hpp
Revision: 1.1.1.1 (vendor branch)
Committed: Mon Oct 31 22:10:36 2005 UTC (19 years, 6 months ago) by afaq
Branch: v00
CVS Tags: DBS_0_0_3a, DBS_0_0_3, DBS_0_0_0, vs20060320, AfterJan2006SchemaChanges_v01_00_01, AfterJan2006SchemaChanges_v01_00_00, AfterJan2006SchemaChanges, BeforeJan2006SchemaChanges, before_message_removal, preXOverChanges, start
Branch point for: BranchForCPPWebServiceTesting
Changes since 1.1: +0 -0 lines
Log Message:
Adding Server code to the repository

File Contents

# Content
1 #ifndef _SingleTableInterface_hpp_included_
2 #define _SingleTableInterface_hpp_included_
3
4 #include "TableTemplate.hpp"
5 #include "DBManagement.hpp"
6
7 template <class R>
8 class SingleTableInterface : public TableTemplate<R> {
9
10 public:
11 ///Default constructor
12 SingleTableInterface();
13 SingleTableInterface(DBManagement*);
14
15
16 private:
17 void doSmartInsert(R*);
18 };
19 #endif
20
21