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
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 AttributeLayer& operator=(AttributeLayer const&);
35 AttributeLayer(AttributeLayer const&);
36 AttributeLayer();
37};
38
39} // namespace EAS
Definition Alias.h:14