13 line
220 B
C++
13 line
220 B
C++
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
#include <QCoreApplication>
|
|
|
|
namespace Common
|
|
{
|
|
void setupAppInfo();
|
|
QString databasePath();
|
|
bool initSqliteDatabase(QString path);
|
|
void ensureConfigured();
|
|
} // namespace Common
|
|
#endif
|