class EE::UI::CSS::StyleSheetParser

#include <stylesheetparser.hpp>

class StyleSheetParser {
public:
    // methods

    bool loadFromStream(IOStream& stream);
    bool loadFromFile(const std::string& file);
    bool loadFromMemory(const Uint8* RAWData, const Uint32& size);
    bool loadFromPack(Pack* pack, std::string filePackPath);
    bool loadFromString(const std::string& str);
    bool loadFromString(const std::string_view& str);
    void print();
    StyleSheet& getStyleSheet();
    const bool& isLoaded() const;
};