mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-23 09:48:45 +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;
|
|
};
|