Initial project
This commit is contained in:
31
packages/im_log_sdk/windows/im_log_sdk_plugin.h
Normal file
31
packages/im_log_sdk/windows/im_log_sdk_plugin.h
Normal file
@@ -0,0 +1,31 @@
|
||||
#ifndef FLUTTER_PLUGIN_IM_LOG_SDK_PLUGIN_H_
|
||||
#define FLUTTER_PLUGIN_IM_LOG_SDK_PLUGIN_H_
|
||||
|
||||
#include <flutter/method_channel.h>
|
||||
#include <flutter/plugin_registrar_windows.h>
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace im_log_sdk {
|
||||
|
||||
class ImLogSdkPlugin : public flutter::Plugin {
|
||||
public:
|
||||
static void RegisterWithRegistrar(flutter::PluginRegistrarWindows *registrar);
|
||||
|
||||
ImLogSdkPlugin();
|
||||
|
||||
virtual ~ImLogSdkPlugin();
|
||||
|
||||
// Disallow copy and assign.
|
||||
ImLogSdkPlugin(const ImLogSdkPlugin&) = delete;
|
||||
ImLogSdkPlugin& operator=(const ImLogSdkPlugin&) = delete;
|
||||
|
||||
// Called when a method is called on this plugin's channel from Dart.
|
||||
void HandleMethodCall(
|
||||
const flutter::MethodCall<flutter::EncodableValue> &method_call,
|
||||
std::unique_ptr<flutter::MethodResult<flutter::EncodableValue>> result);
|
||||
};
|
||||
|
||||
} // namespace im_log_sdk
|
||||
|
||||
#endif // FLUTTER_PLUGIN_IM_LOG_SDK_PLUGIN_H_
|
||||
Reference in New Issue
Block a user