summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/same_name/aaa/bbb/item.hpp
blob: c82309dcd31c7585626629e76761da942ea8173f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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