[Adaptation Layer] Added rive-tizen adaptation layer class.
[platform/core/uifw/rive-tizen.git] / submodule / include / generated / animation / state_machine_layer_component_base.hpp
1 #ifndef _RIVE_STATE_MACHINE_LAYER_COMPONENT_BASE_HPP_
2 #define _RIVE_STATE_MACHINE_LAYER_COMPONENT_BASE_HPP_
3 #include "core.hpp"
4 namespace rive
5 {
6         class StateMachineLayerComponentBase : public Core
7         {
8         protected:
9                 typedef Core Super;
10
11         public:
12                 static const uint16_t typeKey = 66;
13
14                 /// Helper to quickly determine if a core object extends another without
15                 /// RTTI at runtime.
16                 bool isTypeOf(uint16_t typeKey) const override
17                 {
18                         switch (typeKey)
19                         {
20                                 case StateMachineLayerComponentBase::typeKey:
21                                         return true;
22                                 default:
23                                         return false;
24                         }
25                 }
26
27                 uint16_t coreType() const override { return typeKey; }
28
29                 void copy(const StateMachineLayerComponentBase& object) {}
30
31                 bool deserialize(uint16_t propertyKey, BinaryReader& reader) override
32                 {
33                         switch (propertyKey)
34                         {
35                         }
36                         return false;
37                 }
38
39         protected:
40         };
41 } // namespace rive
42
43 #endif