2020-05-23 22:52:42 +02:00
|
|
|
#ifndef COMMON_H
|
|
|
|
#define COMMON_H
|
|
|
|
#include <QCoreApplication>
|
|
|
|
|
|
|
|
namespace Common
|
|
|
|
{
|
|
|
|
void setupAppInfo();
|
2020-05-24 15:36:27 +02:00
|
|
|
QString databasePath();
|
2020-08-24 21:36:45 +02:00
|
|
|
bool initSqliteDatabase(QString path);
|
|
|
|
void ensureConfigured();
|
2020-05-24 15:36:27 +02:00
|
|
|
} // namespace Common
|
2020-05-23 22:52:42 +02:00
|
|
|
#endif
|