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.
20 lines
318 B
20 lines
318 B
|
|
#ifndef CSCI_DATABASE_HANDLER_H
|
|
#define CSCI_DATABASE_HANDLER_H
|
|
|
|
#include <QObject>
|
|
//#include <precompiled.h>
|
|
#include <QxOrm.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
|