362ab201b041331cca98b441f39031c91b293b37
[platform/core/uifw/rive-tizen.git] / submodule / include / generated / shapes / cubic_vertex_base.hpp
1 #ifndef _RIVE_CUBIC_VERTEX_BASE_HPP_
2 #define _RIVE_CUBIC_VERTEX_BASE_HPP_
3 #include "shapes/path_vertex.hpp"
4 namespace rive
5 {
6         class CubicVertexBase : public PathVertex
7         {
8         protected:
9                 typedef PathVertex Super;
10
11         public:
12                 static const int typeKey = 36;
13
14                 /// Helper to quickly determine if a core object extends another without
15                 /// RTTI at runtime.
16                 bool isTypeOf(int typeKey) const override
17                 {
18                         switch (typeKey)
19                         {
20                                 case CubicVertexBase::typeKey:
21                                 case PathVertexBase::typeKey:
22                                 case ContainerComponentBase::typeKey:
23                                 case ComponentBase::typeKey:
24                                         return true;
25                                 default:
26                                         return false;
27                         }
28                 }
29
30                 int coreType() const override { return typeKey; }
31
32         protected:
33         };
34 } // namespace rive
35
36 #endif