2019-11-11 23:01:05 +01:00
|
|
|
#ifndef A_QT_HPP
|
|
|
|
#define A_QT_HPP
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2021-09-14 00:13:48 +02:00
|
|
|
#include <config_a.hpp>
|
2020-02-01 23:06:01 +01:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
2019-11-11 23:01:05 +01:00
|
|
|
namespace a_qt {
|
|
|
|
|
|
|
|
/// @brief A header local QObject based class
|
|
|
|
class Header_QObject : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
Header_QObject() {}
|
|
|
|
~Header_QObject() {}
|
|
|
|
|
|
|
|
std::string str;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// @brief Function that returns the content of mocs_compilation.cpp
|
|
|
|
extern std::string mocs_compilation();
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|