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