You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
427 B
C++
24 lines
427 B
C++
#ifndef COMBOITEM_H
|
|
#define COMBOITEM_H
|
|
|
|
#include "../core_global.h"
|
|
#include <QSharedPointer>
|
|
#include <QVariant>
|
|
#include <QObject>
|
|
|
|
class CORESHARED_EXPORT ComboItem : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ComboItem(QObject *parent = NULL);
|
|
~ComboItem();
|
|
|
|
virtual bool eq(ComboItem *other) = 0;
|
|
virtual QString toString() = 0;
|
|
};
|
|
|
|
QX_REGISTER_HPP_CORE(ComboItem, QObject, 0)
|
|
|
|
#endif // COMBOITEM_H
|