Skip to content
Snippets Groups Projects
Select Git revision
  • 3355813b97281721fba243f4b6d74c22a6f7ea49
  • master default
2 results

mxframe.h

Blame
  • mxframe.h 296 B
    #ifndef MXFRAME_H
    #define MXFRAME_H
    
    #include <QVector>
    #include <QColor>
    #include <QString>
    
    class MxFrame
    {
    private:
        QColor qp4strToColor(const QString& str);
    public:
        MxFrame();
        MxFrame(const QString& import);
        QColor pixels[26][32];
        uint32_t length;
    };
    
    #endif // MXFRAME_H