qskinny/examples/iot-dashboard/Box.h

20 lines
304 B
C++

#ifndef CARD_H
#define CARD_H
#include <QskLinearBox.h>
class QskTextLabel;
class Box : public QskLinearBox
{
public:
Box( const QString& title, QQuickItem* parent );
private:
QString m_title;
QskTextLabel* m_label;
QskControl* m_content;
};
#endif // CARD_H