2
* Copyright (C) 2010-2011 David Edmundson.
3
* Author: David Edmundson <kde@davidedmundson.co.uk>
5
* This library is free software; you can redistribute it and/or modify it under
6
* the terms of the GNU Lesser General Public License as published by the Free
7
* Software Foundation; either version 3 of the License, or (at your option) any
8
* later version. See http://www.gnu.org/copyleft/lgpl.html the full text of the
12
#include "QLightDM/language.h"
14
using namespace QLightDM;
24
Language::Language(QString &code, QString &name, QString &territory)
25
: d(new LanguagePrivate)
29
d->territory = territory;
32
Language::Language(const Language &other)
33
:d(new LanguagePrivate(*other.d))
42
Language& Language::operator=(const Language& other)
49
QString Language::code() const
54
QString Language::name() const
59
QString Language::territory() const