summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/same_name/aaa/bbb/item.hpp
blob: 87ac6ea7e274d4ce6afee93daab8d690b901224a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef SDA_SDB_ITEM_HPP
#define SDA_SDB_ITEM_HPP

#include <QObject>

namespace aaa {
namespace bbb {

class Item : public QObject
{
  Q_OBJECT
  Q_SLOT
  void go();
};
}
}

#endif