1234567891011121314151617181920212223 |
- #pragma once
- #include <AK/Retainable.h>
- class StyleValue : public Retainable<StyleValue> {
- public:
- virtual ~StyleValue();
- enum Type {
- Invalid,
- Inherit,
- Initial,
- Primitive,
- };
- Type type() const { return m_type; }
- protected:
- explicit StyleValue(Type);
- private:
- Type m_type { Type::Invalid };
- };
|