#ifndef TABLE_H #define TABLE_H #include "coreSQLiteStudio_global.h" #include class API_EXPORT Table { public: Table(); Table(const QString& database, const QString& table); Table(const Table& other); virtual ~Table(); int operator ==(const Table& other) const; QString getDatabase() const; void setDatabase(const QString& value); QString getTable() const; void setTable(const QString& value); protected: QString database; QString table; }; int API_EXPORT qHash(Table table); #endif // TABLE_H