blob: 8331ea2b7a35e24be047f7418b12ad3ec778e249 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef INCB_HPP
#define INCB_HPP
#include <QObject>
/// @brief Test moc include pattern in the source file
///
class IncB : public QObject
{
Q_OBJECT
public:
IncB();
};
#endif
|