Files
modal_progress_hud_nsn/windows/modal_progress_hud_nsn_plugin.h
2023-04-05 19:15:46 +05:30

33 lines
1021 B
C++

#ifndef FLUTTER_PLUGIN_MODAL_PROGRESS_HUD_NSN_PLUGIN_H_
#define FLUTTER_PLUGIN_MODAL_PROGRESS_HUD_NSN_PLUGIN_H_
#include <flutter/method_channel.h>
#include <flutter/plugin_registrar_windows.h>
#include <memory>
namespace modal_progress_hud_nsn {
class ModalProgressHudNsnPlugin : public flutter::Plugin {
public:
static void RegisterWithRegistrar(flutter::PluginRegistrarWindows *registrar);
ModalProgressHudNsnPlugin();
virtual ~ModalProgressHudNsnPlugin();
// Disallow copy and assign.
ModalProgressHudNsnPlugin(const ModalProgressHudNsnPlugin&) = delete;
ModalProgressHudNsnPlugin& operator=(const ModalProgressHudNsnPlugin&) = delete;
private:
// 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 modal_progress_hud_nsn
#endif // FLUTTER_PLUGIN_MODAL_PROGRESS_HUD_NSN_PLUGIN_H_