LeviLamina
Loading...
Searching...
No Matches
ILocalizationDictionary.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
19
20public:
21 // virtual functions
22 // NOLINTBEGIN
23 // vIndex: 0
24 virtual ~ILocalizationDictionary() = default;
25
26 // vIndex: 1
27 virtual ::std::string getLocString(::std::string const&) const = 0;
28
29 // vIndex: 2
30 virtual bool isLocalizationReady() const = 0;
31
32 // vIndex: 3
33 virtual void _updateLoc() = 0;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
Definition ILocalizationDictionary.h:5
Definition Alias.h:14