LeviLamina
Loading...
Searching...
No Matches
ILocalizationDictionary.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 ILocalizationDictionary {
11public:
12 // member variables
13 // NOLINTBEGIN
17 // NOLINTEND
18
19#ifdef LL_PLAT_S
20public:
21 // prevent constructor by default
22 ILocalizationDictionary& operator=(ILocalizationDictionary const&);
23 ILocalizationDictionary(ILocalizationDictionary const&);
24 ILocalizationDictionary();
25
26#else // LL_PLAT_C
27public:
28 // prevent constructor by default
29 ILocalizationDictionary& operator=(ILocalizationDictionary const&);
30 ILocalizationDictionary(ILocalizationDictionary const&);
31
32#endif
33public:
34 // virtual functions
35 // NOLINTBEGIN
36#ifdef LL_PLAT_S
37 virtual ~ILocalizationDictionary() = default;
38#else // LL_PLAT_C
39 virtual ~ILocalizationDictionary();
40#endif
41
42 virtual ::std::string getLocString(::std::string const& locKey) const = 0;
43
44 virtual bool isLocalizationReady() const = 0;
45
46 virtual void _updateLoc() = 0;
47 // NOLINTEND
48
49public:
50 // member functions
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCNAPI ILocalizationDictionary();
54
55 MCNAPI void _clearLocFilePath();
56
57 MCNAPI void _updateLocAndFilePath(::Core::Path const& locFilePath);
58
59 MCNAPI bool _updateLocPath(::Core::Path const& locFilePath);
60
61 MCNAPI ::std::string const& getLocCode() const;
62
63 MCNAPI ::Core::Path const& getLocFilePath() const;
64
65 MCNAPI void updateLoc();
66#endif
67 // NOLINTEND
68
69public:
70 // constructor thunks
71 // NOLINTBEGIN
72#ifdef LL_PLAT_C
73 MCNAPI void* $ctor();
74#endif
75 // NOLINTEND
76
77public:
78 // destructor thunk
79 // NOLINTBEGIN
80 MCNAPI void $dtor();
81 // NOLINTEND
82
83public:
84 // virtual function thunks
85 // NOLINTBEGIN
86
87 // NOLINTEND
88
89public:
90 // vftables
91 // NOLINTBEGIN
92 MCNAPI static void** $vftable();
93 // NOLINTEND
94};
Definition Path.h:12
static MCAPI void ** $vftable()
Definition Alias.h:14