~lightdm-team/lightdm/1.4

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef QLIGTHDM_LANGUAGE_H
#define QLIGTHDM_LANGUAGE_H
#include <QString>

class LanguagePrivate;

namespace QLightDM {
    class Language
    {
    public:
        Language(QString &code, QString &name, QString &territory);
        ~Language();
        Language(const Language& other);
        Language &operator=(const Language& other);

        QString code() const;
        QString name() const;
        QString territory() const;
    private:
        LanguagePrivate* d;
    };
};

#endif // LDMLANGUAGE_H