2019-09-23 18:37:17 +03:00
|
|
|
/*
|
2019-12-08 13:57:20 +03:00
|
|
|
* Copyright (C) 2018-2020 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
|
|
|
#ifndef MODULES_H
|
|
|
|
#define MODULES_H
|
|
|
|
|
2020-01-31 12:40:31 +03:00
|
|
|
#include "modulesqt514.h"
|
2019-09-14 15:51:23 +03:00
|
|
|
#include "testutils.h"
|
2019-11-15 15:40:32 +03:00
|
|
|
#include <configparser.h>
|
2019-09-14 15:51:23 +03:00
|
|
|
#include <QSet>
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-01-31 12:40:31 +03:00
|
|
|
class Modules : public ModulesQt514
|
2019-09-14 15:51:23 +03:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Modules();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MODULES_H
|