16 lines
148 B
C
Raw Normal View History

2018-01-26 17:06:56 +01:00
#ifndef CLASSA_HPP
#define CLASSA_HPP
#include <QObject>
class A : public QObject
{
Q_OBJECT
2018-04-23 21:13:27 +02:00
static bool recursed;
2018-01-26 17:06:56 +01:00
public:
A();
};
#endif