LeviLamina
Loading...
Searching...
No Matches
ScriptPluginPackSource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/scripting/IScriptPluginSource.h"
7
8// auto generated forward declare list
9// clang-format off
10class PackManifest;
11namespace Core { class Path; }
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 // vIndex: 1
32 virtual ::PackManifest const& getManifest() /*override*/;
33
34 // vIndex: 2
35 virtual ::std::vector<::std::string> enumerateScripts(::std::string const& extension) /*override*/;
36
37 // vIndex: 3
38 virtual ::std::optional<::std::string> loadScript(::std::string const& path) /*override*/;
39
40 // vIndex: 4
41 virtual ::std::string removeRootFromPath(::std::string const& path) /*override*/;
42
43 // vIndex: 0
44 virtual ~ScriptPluginPackSource() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCAPI ::Core::Path _removeRootFromPath(::Core::Path const& pathIn);
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56
57 // NOLINTEND
58
59public:
60 // virtual function thunks
61 // NOLINTBEGIN
62 MCAPI ::PackManifest const& $getManifest();
63
64 MCAPI ::std::vector<::std::string> $enumerateScripts(::std::string const& extension);
65
66 MCAPI ::std::optional<::std::string> $loadScript(::std::string const& path);
67
68 MCAPI ::std::string $removeRootFromPath(::std::string const& path);
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCAPI static void** $vftable();
75 // NOLINTEND
76};
Definition Path.h:15
Definition IScriptPluginSource.h:10
Definition PackManifest.h:19
Definition Path.h:16
Definition ScriptPluginPackSource.h:14
Definition Alias.h:14