LeviLamina
Loading...
Searching...
No Matches
AttributeLayer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace EAS {
6
7class AttributeLayer {
8public:
9 // AttributeLayer inner types define
10 enum class DirtyFlag : uchar {
11 InitLayer = 0,
12 UpdateLayerSettings = 1,
13 UpdateAttribute = 2,
14 RemoveAttribute = 3,
15 Count = 4,
16 };
17
18public:
19 // member variables
20 // NOLINTBEGIN
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 AttributeLayer& operator=(AttributeLayer const&);
34 AttributeLayer(AttributeLayer const&);
35 AttributeLayer();
36};
37
38} // namespace EAS
Definition Alias.h:14