summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/SameName/object.h
blob: 86620941ac77b517121bbf3ec7a815fd67827ac2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef OBJECT_H
#define OBJECT_H

#include <QObject>

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

#endif