summaryrefslogtreecommitdiffstats
path: root/Tests/QtAutogen/SameName/object.hpp
blob: 035050ec742d814578b3f5c78b0ca4e84a76eb1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef OBJECT_HPP
#define OBJECT_HPP

#include <QObject>

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

#endif