blob: 6e8ff8865c765d773860b9ab975192ef50603e00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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
|