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

File Contents

# User Rev Content
1 afaq 1.1 #ifndef _TableFactory_hpp_
2     #define _TableFactory_hpp_
3    
4     #include <string>
5     #include "TableInterface.hpp"
6     #include "SingleTableInterface.hpp"
7     #include "MultiTableInterface.hpp"
8     #include "ObjectLayerTables.hpp"
9     #include "RowInterface.hpp"
10    
11     class TableFactory {
12    
13     public:
14     TableFactory();
15     ~TableFactory();
16    
17    
18     TableInterface* getTableObject(string);
19     //TableInterface<RowInterface>* getTableObject(string);
20     };
21    
22     #endif
23