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 MCAPI void setParseRawInputCallback(::std::function<void()> callback);
18
19 MCAPI void setRawText(::std::string const& str);
20 // NOLINTEND
21};
Definition DeferredTextObject.h:5