#ifndef CLS_DATABASE_H #define CLS_DATABASE_H #include class Database : public QSqlDatabase { public: Database(); bool open(const QString &file); bool Opened() { return bOpened; } private: bool bOpened; }; #endif