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.
32 lines
485 B
32 lines
485 B
3 years ago
|
#ifndef MIMAGECONTAINER_H
|
||
|
#define MIMAGECONTAINER_H
|
||
|
|
||
|
#include <QObject>
|
||
|
|
||
|
#include "viewModel/utils/UsImage.h"
|
||
|
|
||
|
class MImageContainer : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
US_IMAGE_M(image,
|
||
|
"",
|
||
|
0,
|
||
|
0,
|
||
|
0,
|
||
|
0,
|
||
|
0,
|
||
|
0,
|
||
|
false,
|
||
|
0,
|
||
|
0,
|
||
|
0,
|
||
|
0,
|
||
|
false)
|
||
|
|
||
|
public:
|
||
|
MImageContainer();
|
||
|
};
|
||
|
|
||
|
#endif //MIMAGECONTAINER_H
|