You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
358 B
21 lines
358 B
#ifndef MixedCustom_HPP
|
|
#define MixedCustom_HPP
|
|
|
|
#include <QObject>
|
|
|
|
// Object source includes
|
|
// - externally generated header moc file
|
|
// - AUTOMOC generated source .moc file
|
|
class MixedCustom : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
MixedCustom();
|
|
~MixedCustom();
|
|
};
|
|
|
|
// Function forward declaration
|
|
void moc_MixedCustom(MixedCustom const& arg);
|
|
|
|
#endif
|