2015-04-29 22:38:29 +08:00
|
|
|
#ifndef MANUALINCLUDE_H_
|
|
|
|
#define MANUALINCLUDE_H_
|
|
|
|
|
|
|
|
#include<QObject>
|
|
|
|
|
|
|
|
class ManualInclude : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ManualInclude();
|
|
|
|
|
2017-10-26 04:31:47 +08:00
|
|
|
#if defined(MOC_EXTRA_FLAG)
|
2015-04-29 22:38:29 +08:00
|
|
|
signals:
|
2017-10-26 04:31:47 +08:00
|
|
|
#endif
|
2015-04-29 22:38:29 +08:00
|
|
|
int mysignal();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|