summaryrefslogtreecommitdiff
path: root/src/strings.h
blob: bd7925a85b7a15d8c0163ea2523905fd31bd346d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef STRINGS_H
#define STRINGS_H

#include <QObject>
#include <QString>

class Strings: public QObject
{
    Q_OBJECT

public:
    static const char* s_build;
    static const char* s_author;
    static const char* s_appTitle;
    static const char* s_error;

public:
    static QString errorTitle() { return tr(s_appTitle) + " - " + tr(s_error); }

};

#endif