21 lines
240 B
C++
21 lines
240 B
C++
#ifndef TARGETLIST_H
|
|
#define TARGETLIST_H
|
|
|
|
#include <QObject>
|
|
|
|
|
|
//class QTreeWidget
|
|
|
|
class TargetList : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit TargetList(QObject *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
};
|
|
|
|
#endif // TARGETLIST_H
|