dbwrapper.h
00001 #ifndef VR3_DBWRAPPER_H 00002 #define VR3_DBWRAPPER_H 00003 00004 #include <qstring.h> 00005 00006 namespace Vr3 { 00012 class DBWrapper { 00013 public: 00014 DBWrapper(); 00015 ~DBWrapper(); 00016 00017 bool open( const QString& fileName ); 00018 void close(); 00019 00020 }; 00021 } 00022 00023 #endif