LeviLamina
Loading...
Searching...
No Matches
DeferredTextObject.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 64, ::std::function<void()>> mParseRawInputCallback;
10 ::ll::TypedStorage<8, 32, ::std::string> mRawText;
11 ::ll::TypedStorage<1, 1, bool> mRawTextModfied;
12 // NOLINTEND
13
14public:
15 // member functions
16 // NOLINTBEGIN
17 MCFOLD ::std::string const& getRawText() const;
18
19 MCAPI void setParseRawInputCallback(::std::function<void()> callback);
20
21 MCAPI void setRawText(::std::string const& str);
22
23 MCAPI void tick();
24 // NOLINTEND
25};
Definition DeferredTextObject.h:5