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.
20 lines
273 B
20 lines
273 B
7 years ago
|
#include "IncB.hpp"
|
||
|
|
||
|
/// @brief Source local QObject
|
||
|
///
|
||
|
class IncBPrivate : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
IncBPrivate(){};
|
||
|
};
|
||
|
|
||
|
IncB::IncB()
|
||
|
{
|
||
|
IncBPrivate priv;
|
||
|
}
|
||
|
|
||
|
/// AUTOMOC moc_ include on the last line of the file!
|
||
|
#include "IncB.moc"
|
||
|
#include "moc_IncB.cpp"
|