You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
297 B
19 lines
297 B
1 year ago
|
|
||
|
#ifndef CSCI_DATABASE_HANDLER_H
|
||
|
#define CSCI_DATABASE_HANDLER_H
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <precompiled.h>
|
||
|
#include <QxOrm_Impl.h>
|
||
|
|
||
|
#include "../config/database_config.h"
|
||
|
|
||
|
class DataBaseHandler: public QObject{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
static void init();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //CSCI_DATABASE_HANDLER_H
|