LeviLamina
Loading...
Searching...
No Matches
ServerDataTransferServiceProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result_deprecated.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Editor::ScriptModule { class ScriptTransferCollectionNameData; }
11// clang-format on
12
13namespace Editor::Services {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ~ServerDataTransferServiceProvider() = default;
21
22 // vIndex: 1
23 virtual void requestData(
24 ::std::string const&,
25 ::std::function<void(bool, ::std::string const&, ::std::string const&, ::std::string const&)> const&,
26 bool
27 ) = 0;
28
29 // vIndex: 2
30 virtual ::Scripting::Result_deprecated<::std::string const> requestSchema(::std::string const&) = 0;
31
32 // vIndex: 3
33 virtual ::Scripting::Result_deprecated<void> sendData(::std::string const&, ::std::string const&) = 0;
34
35 // vIndex: 4
36 virtual ::Scripting::Result_deprecated<void> sendDataToClipboard(::std::string const&) = 0;
37
38 // vIndex: 5
39 virtual ::std::vector<::Editor::ScriptModule::ScriptTransferCollectionNameData>
40 getRegisteredCollections() const = 0;
41
42 // vIndex: 6
43 virtual ::Scripting::Result_deprecated<void> openSession(::std::string const&) = 0;
44
45 // vIndex: 7
46 virtual ::Scripting::Result_deprecated<void> closeSession(::std::string const&) = 0;
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52
53 // NOLINTEND
54};
55
56} // namespace Editor::Services
Definition ServerDataTransferServiceProvider.h:15