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.
31 lines
485 B
31 lines
485 B
#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
|
|
|