blob: 313b58b73ea499a3a8903c8d4ec352e9c970582e [file] [log] [blame]
#ifndef A_QT_HPP
#define A_QT_HPP
#include <string>
#include <config_a.hpp>
#include <QObject>
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