123456789101112131415161718192021222324252627 |
- #ifndef HOBJECTENTRY_H
- #define HOBJECTENTRY_H
- #include <QString>
- #include "HalconCpp.h"
- #include "HWndMessage.h"
- #include <QVariantHash>
- #include<QHash>
- #include "showunit_global.h"
- class SHOWUNITSHARED_EXPORT HObjectEntry
- {
- public:
- HObjectEntry(const HObject &obj, const QHash<QString, HTuple> &gc);
- HObjectEntry(const HWndMessage &message);
- ~HObjectEntry();
- QHash<QString, HTuple> getGC(void) { return gc; }
- HObject getHobj() const;
- HWndMessage getMessage() const;
- private:
- QHash<QString, HTuple> gc;
- HObject hobj;
- HWndMessage message;
- };
- #endif // HOBJECTENTRY_H
|