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.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Editor::ScriptModule { class ScriptTransferCollectionNameData; }
11namespace Scripting { struct Error; }
12// clang-format on
13
14namespace Editor::Services {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~ServerDataTransferServiceProvider() = default;
22
23 // vIndex: 1
24 virtual void
25 requestData(::std::string const&, ::std::function<void(bool, ::std::string const&, ::std::string const&, ::std::string const&)> const&) = 0;
26
27 // vIndex: 2
28 virtual ::Scripting::Result<::std::string const, ::Scripting::Error> requestSchema(::std::string const&) = 0;
29
30 // vIndex: 3
31 virtual ::Scripting::Result<void> sendData(::std::string const&, ::std::string const&) = 0;
32
33 // vIndex: 4
34 virtual ::Scripting::Result<void> sendDataToClipboard(::std::string const&) = 0;
35
36 // vIndex: 5
37 virtual ::std::vector<::Editor::ScriptModule::ScriptTransferCollectionNameData>
38 getRegisteredCollections() const = 0;
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44
45 // NOLINTEND
46
47public:
48 // virtual function thunks
49 // NOLINTBEGIN
50
51 // NOLINTEND
52};
53
54} // namespace Editor::Services
Definition ServerDataTransferServiceProvider.h:16