2019-09-23 18:37:17 +03:00
|
|
|
/*
|
2021-01-05 13:17:11 +03:00
|
|
|
* Copyright (C) 2018-2021 QuasarApp.
|
2019-09-23 18:37:17 +03:00
|
|
|
* Distributed under the lgplv3 software license, see the accompanying
|
|
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
|
|
* of this license document, but changing it is not allowed.
|
|
|
|
*/
|
|
|
|
|
2019-09-14 15:51:23 +03:00
|
|
|
#include "modules.h"
|
2019-09-16 09:44:19 +03:00
|
|
|
#include <configparser.h>
|
2019-09-14 15:51:23 +03:00
|
|
|
|
|
|
|
Modules::Modules()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-07-08 18:29:31 +03:00
|
|
|
Modules &Modules::instance() {
|
|
|
|
static Modules* val = new Modules();
|
|
|
|
|
|
|
|
return *val;
|
|
|
|
}
|
|
|
|
|
2019-11-15 15:40:32 +03:00
|
|
|
|
|
|
|
|