mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
16 lines
245 B
C
16 lines
245 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <AK/Vector.h>
|
||
|
#include <LibHTML/CSS/StyleRule.h>
|
||
|
|
||
|
class StyleSheet {
|
||
|
public:
|
||
|
StyleSheet();
|
||
|
~StyleSheet();
|
||
|
|
||
|
const Vector<StyleRule>& rules() const { return m_rules; }
|
||
|
|
||
|
private:
|
||
|
Vector<StyleRule> m_rules;
|
||
|
};
|