blob: 2e5775e132fcb2a6f9eb7bf82d09be9ced206f09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef B_QT_HPP
#define B_QT_HPP
#include <string>
#include <config_b.hpp>
#include <QObject>
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
|