2018-08-02 14:23:27 +02:00
|
|
|
resources_header = \
|
|
|
|
'''<RCC>
|
|
|
|
<qresource prefix="/">'''
|
|
|
|
|
|
|
|
resources_footer = \
|
|
|
|
''' </qresource>
|
2022-05-22 22:59:05 +02:00
|
|
|
</RCC>\n'''
|
2018-08-02 14:23:27 +02:00
|
|
|
|
|
|
|
header_header = \
|
|
|
|
'''#include <QPixmap>
|
|
|
|
#include "common/Singleton.hpp"
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
2019-09-03 12:07:52 +02:00
|
|
|
class Resources2 : public Singleton
|
|
|
|
{
|
2018-08-02 14:23:27 +02:00
|
|
|
public:
|
|
|
|
Resources2();
|
|
|
|
|
|
|
|
'''
|
|
|
|
|
|
|
|
header_footer = \
|
|
|
|
'''};
|
|
|
|
|
2022-05-22 22:59:05 +02:00
|
|
|
} // namespace chatterino\n'''
|
2018-08-02 14:23:27 +02:00
|
|
|
|
|
|
|
source_header = \
|
|
|
|
'''#include "ResourcesAutogen.hpp"
|
|
|
|
|
|
|
|
namespace chatterino {
|
|
|
|
|
|
|
|
Resources2::Resources2()
|
|
|
|
{
|
|
|
|
'''
|
|
|
|
|
|
|
|
source_footer = \
|
|
|
|
'''}
|
|
|
|
|
2022-05-22 22:59:05 +02:00
|
|
|
} // namespace chatterino\n'''
|