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.
26 lines
405 B
26 lines
405 B
5 years ago
|
#ifndef B_QT_HPP
|
||
|
#define B_QT_HPP
|
||
|
|
||
|
#include <QObject>
|
||
|
#include <config.hpp>
|
||
|
#include <string>
|
||
|
|
||
|
namespace b_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
|