blob: 089fceffb7f6021e2d0e171bb46a55a6ad5ed9c7 [file] [log] [blame]
#ifndef _RIVE_AXIS_XBASE_HPP_
#define _RIVE_AXIS_XBASE_HPP_
#include "rive/layout/axis.hpp"
namespace rive
{
class AxisXBase : public Axis
{
protected:
typedef Axis Super;
public:
static const uint16_t typeKey = 495;
/// Helper to quickly determine if a core object extends another without
/// RTTI at runtime.
bool isTypeOf(uint16_t typeKey) const override
{
switch (typeKey)
{
case AxisXBase::typeKey:
case AxisBase::typeKey:
case ComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
Core* clone() const override;
protected:
};
} // namespace rive
#endif