LeviLamina
Loading...
Searching...
No Matches
RegionFile.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class Path; }
8// clang-format on
9
10class RegionFile {
11public:
12 // member variables
13 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 RegionFile& operator=(RegionFile const&);
24 RegionFile(RegionFile const&);
25 RegionFile();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ~RegionFile();
31 // NOLINTEND
32
33public:
34 // member functions
35 // NOLINTBEGIN
36 MCNAPI explicit RegionFile(::Core::Path const& basePath);
37
38 MCNAPI bool open();
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCNAPI void* $ctor(::Core::Path const& basePath);
45 // NOLINTEND
46
47public:
48 // destructor thunk
49 // NOLINTBEGIN
50 MCNAPI void $dtor();
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition Path.h:10
MCAPI RegionFile(::Core::Path const &basePath)
MCAPI void * $ctor(::Core::Path const &basePath)
static MCAPI void ** $vftable()
MCAPI void $dtor()
MCAPI bool open()
Definition Alias.h:14