mirror of
https://github.com/naoufalzerai/pdf_tools.git
synced 2025-11-09 07:45:54 +00:00
24 lines
740 B
C++
24 lines
740 B
C++
//
|
|
// Generated file. Do not edit.
|
|
//
|
|
|
|
// clang-format off
|
|
|
|
#include "generated_plugin_registrant.h"
|
|
|
|
#include <pdfx/pdfx_plugin.h>
|
|
#include <printing/printing_plugin.h>
|
|
#include <screen_retriever/screen_retriever_plugin.h>
|
|
#include <window_manager/window_manager_plugin.h>
|
|
|
|
void RegisterPlugins(flutter::PluginRegistry* registry) {
|
|
PdfxPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("PdfxPlugin"));
|
|
PrintingPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("PrintingPlugin"));
|
|
ScreenRetrieverPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("ScreenRetrieverPlugin"));
|
|
WindowManagerPluginRegisterWithRegistrar(
|
|
registry->GetRegistrarForPlugin("WindowManagerPlugin"));
|
|
}
|