struct EE::UI::CSS::MediaQueryExpression

#include <mediaquery.hpp>

struct MediaQueryExpression {
    // typedefs

    typedef std::vector<MediaQueryExpression> vector;

    // fields

    MediaFeature feature;
    int val { 0 };
    int val2 { 0 };
    float fval { 0 };
    float fval2 { 0 };
    bool checkAsBool { false };
    std::string valStr;

    // methods

    bool check(const MediaFeatures& features) const;
};