mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-29 11:14:40 +00:00
13 lines
192 B
C
13 lines
192 B
C
|
#ifndef SQLDATABASE_H
|
||
|
#define SQLDATABASE_H
|
||
|
#include <QObject>
|
||
|
|
||
|
class SQLDataBase : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
SQLDataBase(QObject * ptr = nullptr);
|
||
|
};
|
||
|
|
||
|
#endif // SQLDATABASE_H
|