summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/sameName/item.hpp
blob: 91bba3b4d11374086a3e8c2a25f527d676e6357a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef ITEM_HPP
#define ITEM_HPP

#include <QObject>

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

#endif