Main Page   Class Hierarchy   Alphabetical List   Data Structures   File List   Data Fields  

DBDriverInfo.h

00001 /*
00002  * $Id: DBDriverInfo.h,v 1.2 2003/07/31 06:26:04 mindstorm2600 Exp $
00003  */
00004 #ifndef __CLAW_DBDriverInfo_H__
00005 #define __CLAW_DBDriverInfo_H__
00006 
00007 #include<DatabaseInterface.h>
00008 #include<String.h>
00009 
00010 namespace clawsoft{
00017         class DBDriverInfo:public DatabaseInterface{
00018                 private:
00019                 protected:
00020                         int __version;
00021                         int __revision;
00022                         String __vendor;
00023                 public:
00025                         DBDriverInfo();
00028                         DBDriverInfo(int ver, int rev, const String &vend);
00031                         ~DBDriverInfo();
00033                         const int version();
00035                         const int revision();
00038                         const String &vendor();
00039         };
00040 };
00041 
00042 #endif

Authors:

Juan V. Guerrero
Jannette C. Mejia
Juan C. Guevara

Powered by:

SourceForgeLogo