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.
32 lines
552 B
32 lines
552 B
8 years ago
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
||
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
||
13 years ago
|
#include "blub.h"
|
||
|
|
||
|
#include <stdio.h>
|
||
|
|
||
|
class BlubBlub : public QObject
|
||
|
{
|
||
|
Q_OBJECT
|
||
9 years ago
|
public:
|
||
|
BlubBlub()
|
||
|
: QObject()
|
||
|
{
|
||
|
}
|
||
|
public slots:
|
||
|
int getValue() const { return 13; }
|
||
13 years ago
|
};
|
||
|
|
||
|
Blub::Blub()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void Blub::blubber()
|
||
|
{
|
||
|
BlubBlub bb;
|
||
|
printf("Blub blub %d ! \n", bb.getValue());
|
||
|
}
|
||
|
|
||
|
// test the case that the wrong moc-file is included, it should
|
||
|
// actually be "blub.moc"
|
||
|
#include "moc_blub.cpp"
|