Files
CMake/Tests/QtAutogen/SameName/object.hpp
T

14 lines
141 B
C++

#ifndef OBJECT_HPP
#define OBJECT_HPP
#include <QObject>
class Object_hpp : public QObject
{
Q_OBJECT
Q_SLOT
void go(){};
};
#endif