[Adaptation Layer] Added rive-tizen adaptation layer class.
[platform/core/uifw/rive-tizen.git] / submodule / include / generated / animation / blend_state_base.hpp
1 #ifndef _RIVE_BLEND_STATE_BASE_HPP_
2 #define _RIVE_BLEND_STATE_BASE_HPP_
3 #include "animation/layer_state.hpp"
4 namespace rive
5 {
6         class BlendStateBase : public LayerState
7         {
8         protected:
9                 typedef LayerState Super;
10
11         public:
12                 static const uint16_t typeKey = 72;
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 BlendStateBase::typeKey:
21                                 case LayerStateBase::typeKey:
22                                 case StateMachineLayerComponentBase::typeKey:
23                                         return true;
24                                 default:
25                                         return false;
26                         }
27                 }
28
29                 uint16_t coreType() const override { return typeKey; }
30
31         protected:
32         };
33 } // namespace rive
34
35 #endif