mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
22 lines
391 B
C
22 lines
391 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <AK/AKString.h>
|
||
|
#include <AK/Vector.h>
|
||
|
|
||
|
class Selector {
|
||
|
public:
|
||
|
Selector();
|
||
|
~Selector();
|
||
|
|
||
|
struct Component {
|
||
|
enum class Type { Invalid, TagName, Id, Class };
|
||
|
Type type { Type::Invalid };
|
||
|
String value;
|
||
|
};
|
||
|
|
||
|
const Vector<Component>& components() const { return m_components; }
|
||
|
|
||
|
private:
|
||
|
Vector<Component> m_components;
|
||
|
};
|