class EE::UI::CSS::StyleSheetVariable

#include <stylesheetvariable.hpp>

class StyleSheetVariable {
public:
    // construction

    StyleSheetVariable();
    StyleSheetVariable(const std::string& name, const std::string& value);
    StyleSheetVariable(const std::string& name, const std::string& value, const Int64& specificity);

    // methods

    const std::string& getName() const;
    const String::HashType& getNameHash() const;
    const std::string& getValue() const;
    const std::string& value() const;
    const Int64& getSpecificity() const;
    void setSpecificity(const Int64& specificity);
    bool isEmpty() const;
    void setName(const std::string& name);
    void setValue(const std::string& value);
    bool operator==(const StyleSheetVariable& variable);
};