CppPlugins/src/main/cpp/src/plugin.cpp

30 lines
383 B
C++
Raw Normal View History

2020-02-20 19:23:28 +01:00
#include <plugin.h>
2020-02-21 09:57:24 +01:00
#include <iostream>
2020-02-22 09:08:07 +01:00
namespace Plugin {
2020-02-22 02:37:07 +01:00
void CppPlugin::onLoad(JNIEnv*) {
2020-02-20 19:23:28 +01:00
}
2020-02-22 02:37:07 +01:00
void CppPlugin::onEnable(JNIEnv*) {
2020-02-20 19:23:28 +01:00
}
2020-02-22 02:37:07 +01:00
void CppPlugin::onDisable(JNIEnv*) {
2020-02-20 19:23:28 +01:00
}
std::map<std::string, eventfptr> CppPlugin::getEvents() {
2020-02-21 09:57:24 +01:00
std::cout << "Defaults::getEvents()" << std::endl;
2020-02-20 19:23:28 +01:00
return std::map<std::string, eventfptr>();
}
CppPlugin::~CppPlugin() {
2020-02-22 09:08:07 +01:00
}
} //namespace