ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/DBS/Servers/AppServer/include/SingleTableInterface.hpp
Revision: 1.1
Committed: Mon Oct 31 22:10:36 2005 UTC (19 years, 6 months ago) by afaq
Branch: MAIN
Branch point for: v00
Log Message:
Initial revision

File Contents

# User Rev Content
1 afaq 1.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