mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-27 04:09:36 +03:00
In commit 7fa7f55230, the Autogen/SameName test
was changed to not test .hh header file processing in AUTOGEN anymore,
because we had to revert that feature. Since we now support .hh header file
processing in AUTOMOC again, we can restore the Autogen/SameName test for
that.
14 lines
138 B
C++
14 lines
138 B
C++
#ifndef OBJECT_HH
|
|
#define OBJECT_HH
|
|
|
|
#include <QObject>
|
|
|
|
class Object_hh : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_SLOT
|
|
void go(){};
|
|
};
|
|
|
|
#endif
|