4
1
mirror of https://github.com/QuasarApp/Heart.git synced 2025-05-04 13:39:40 +00:00

added plugins classes

This commit is contained in:
Andrei Yankovich 2025-02-15 16:56:48 +01:00
parent ed7ce5994f
commit d232c76da2
4 changed files with 63 additions and 0 deletions

13
src/public/plugin.cpp Normal file

@ -0,0 +1,13 @@
/*
* Copyright (C) 2025-2025 QuasarApp.
* 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.
*/
#include "plugin.h"
namespace QH {
Plugin::Plugin() {}
}

19
src/public/plugin.h Normal file

@ -0,0 +1,19 @@
/*
* Copyright (C) 2025-2025 QuasarApp.
* 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.
*/
#ifndef PLUGIN_H
#define PLUGIN_H
namespace QH {
class Plugin
{
public:
Plugin();
};
}
#endif // PLUGIN_H

@ -0,0 +1,13 @@
/*
* Copyright (C) 2025-2025 QuasarApp.
* 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.
*/
#include "pluginloader.h"
namespace QH {
PluginLoader::PluginLoader() {}
}

18
src/public/pluginloader.h Normal file

@ -0,0 +1,18 @@
/*
* Copyright (C) 2025-2025 QuasarApp.
* 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.
*/
#ifndef PLUGINLOADER_H
#define PLUGINLOADER_H
namespace QH {
class PluginLoader
{
public:
PluginLoader();
};
}
#endif // PLUGINLOADER_H