summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/SameName/aaa/bbb/item.hpp
blob: 085504385ee49d40751f63395740bb1791d33ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef AAA_BBB_ITEM_HPP
#define AAA_BBB_ITEM_HPP

#include <QObject>

namespace aaa {
namespace bbb {

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

#endif