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.
20 lines
185 B
C++
20 lines
185 B
C++
#ifndef SDB_SDA_ITEM_HPP
|
|
#define SDB_SDA_ITEM_HPP
|
|
|
|
#include <QObject>
|
|
|
|
namespace bbb {
|
|
namespace aaa {
|
|
|
|
class Item : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_SLOT
|
|
void go ( );
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|