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