mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 00:00:39 -05:00
8214ad442f
This adds additional headers with suffixes ".hh" and uppercase ".H" to the QtAutogen/SameName test.
14 lines
165 B
C++
14 lines
165 B
C++
#ifndef OBJECT_UPPER_EXT_H
|
|
#define OBJECT_UPPER_EXT_H
|
|
|
|
#include <QObject>
|
|
|
|
class Object_Upper_Ext_H : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Q_SLOT
|
|
void go(){};
|
|
};
|
|
|
|
#endif
|