quickshell/src/io/init.cpp
outfoxxed 2996e40ff9
core/plugin: rename QuickshellPlugin to QsEnginePlugin
Fixes conflict with the autogenerated qml plugin of the same name.
2024-11-22 18:59:15 -08:00

12 lines
230 B
C++

#include "../core/plugin.hpp"
#include "process.hpp"
namespace {
class IoPlugin: public QsEnginePlugin {
void onReload() override { DisownedProcessContext::destroyInstance(); }
};
QS_REGISTER_PLUGIN(IoPlugin);
} // namespace