blob: 36492a2384e4913a551a7c01870874326f218cf5 [file] [log] [blame]
#ifndef _RIVE_SCRIPT_INPUT_STRING_BASE_HPP_
#define _RIVE_SCRIPT_INPUT_STRING_BASE_HPP_
#include "rive/custom_property_string.hpp"
namespace rive
{
class ScriptInputStringBase : public CustomPropertyString
{
protected:
typedef CustomPropertyString Super;
public:
static const uint16_t typeKey = 627;
/// Helper to quickly determine if a core object extends another without
/// RTTI at runtime.
bool isTypeOf(uint16_t typeKey) const override
{
switch (typeKey)
{
case ScriptInputStringBase::typeKey:
case CustomPropertyStringBase::typeKey:
case CustomPropertyBase::typeKey:
case ComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
Core* clone() const override;
protected:
};
} // namespace rive
#endif