mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-05-05 22:19:41 +00:00
added plugins classes
This commit is contained in:
parent
ed7ce5994f
commit
d232c76da2
13
src/public/plugin.cpp
Normal file
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
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
|
13
src/public/pluginloader.cpp
Normal file
13
src/public/pluginloader.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 "pluginloader.h"
|
||||||
|
namespace QH {
|
||||||
|
|
||||||
|
PluginLoader::PluginLoader() {}
|
||||||
|
}
|
18
src/public/pluginloader.h
Normal file
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
|
Loading…
x
Reference in New Issue
Block a user