The test features multiple .cpp and .qrc files with the same name in different subdirectories. This requires AUTOMOC and AUTORCC to generate files with names that respect the path information of the source files.
18 lines
159 B
C++
18 lines
159 B
C++
#ifndef SDC_ITEM_HPP
|
|
#define SDC_ITEM_HPP
|
|
|
|
#include <QObject>
|
|
|
|
namespace ccc {
|
|
|
|
class Item : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_SLOT
|
|
void go ( );
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|