2020-08-12 15:11:00 +00:00
|
|
|
#ifndef USAGE_H
|
|
|
|
#define USAGE_H
|
|
|
|
|
2020-09-17 14:14:29 +00:00
|
|
|
#include "Box.h"
|
2020-08-12 15:11:00 +00:00
|
|
|
#include <QskLinearBox.h>
|
|
|
|
|
2020-09-17 14:14:29 +00:00
|
|
|
class Usage : public Box
|
2020-08-12 15:11:00 +00:00
|
|
|
{
|
2020-09-16 16:38:17 +00:00
|
|
|
public:
|
|
|
|
Usage( QQuickItem* parent );
|
2020-08-12 15:11:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // USAGE_H
|