You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
796 B
47 lines
796 B
#ifndef BIMAGECONTAINER_H
|
|
#define BIMAGECONTAINER_H
|
|
|
|
#include <QObject>
|
|
#include <QPoint>
|
|
|
|
#include "viewModel/utils/UsImage.h"
|
|
|
|
class BImageContainer : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
US_IMAGE_B(image,
|
|
"",
|
|
0,
|
|
0,
|
|
0,
|
|
(QList<QString>({"1"})),
|
|
false,
|
|
false,
|
|
true,
|
|
true,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
false,
|
|
false,
|
|
false,
|
|
false,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
false)
|
|
|
|
public:
|
|
BImageContainer();
|
|
|
|
|
|
};
|
|
|
|
#endif //BIMAGECONTAINER_H
|
|
|