mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
39 lines
496 B
Python
39 lines
496 B
Python
|
resources_header = \
|
||
|
'''<RCC>
|
||
|
<qresource prefix="/">'''
|
||
|
|
||
|
resources_footer = \
|
||
|
''' </qresource>
|
||
|
</RCC>'''
|
||
|
|
||
|
header_header = \
|
||
|
'''#include <QPixmap>
|
||
|
#include "common/Singleton.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
class Resources2 : public Singleton {
|
||
|
public:
|
||
|
Resources2();
|
||
|
|
||
|
'''
|
||
|
|
||
|
header_footer = \
|
||
|
'''};
|
||
|
|
||
|
} // namespace chatterino'''
|
||
|
|
||
|
source_header = \
|
||
|
'''#include "ResourcesAutogen.hpp"
|
||
|
|
||
|
namespace chatterino {
|
||
|
|
||
|
Resources2::Resources2()
|
||
|
{
|
||
|
'''
|
||
|
|
||
|
source_footer = \
|
||
|
'''}
|
||
|
|
||
|
} // namespace chatterino'''
|