qskinny/examples/iot-dashboard/MainContent.h

18 lines
271 B
C
Raw Normal View History

2020-05-22 09:48:05 +00:00
#ifndef MAINCONTENT_H
#define MAINCONTENT_H
#include <QskLinearBox.h>
class MainContent : public QskLinearBox
{
2020-09-16 16:38:17 +00:00
Q_OBJECT
2020-05-22 09:48:05 +00:00
2020-09-16 16:38:17 +00:00
public:
MainContent( QQuickItem* parent );
2020-05-22 09:48:05 +00:00
2020-09-16 16:38:17 +00:00
private:
QList< QskLinearBox* > m_columns;
2020-05-22 09:48:05 +00:00
};
#endif // MAINCONTENT_H