~lightdm-team/lightdm/1.4

« back to all changes in this revision

Viewing changes to liblightdm-qt/QLightDM/language.h

  • Committer: David Edmundson
  • Date: 2011-11-15 17:00:49 UTC
  • mto: (1297.1.18 qt-fixes)
  • mto: This revision was merged to the branch mainline in revision 1322.
  • Revision ID: david@davidedmundson.co.uk-20111115170049-l8e7aoc6na583d9f
remove unused language class

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2010-2011 David Edmundson.
3
 
 * Author: David Edmundson <kde@davidedmundson.co.uk>
4
 
 *
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
9
 
 * license.
10
 
 */
11
 
 
12
 
#ifndef QLIGHTDM_LANGUAGE_H
13
 
#define QLIGHTDM_LANGUAGE_H
14
 
 
15
 
#include <QString>
16
 
 
17
 
class LanguagePrivate;
18
 
 
19
 
namespace QLightDM {
20
 
    class Language
21
 
    {
22
 
    public:
23
 
        Language(QString &code, QString &name, QString &territory);
24
 
        ~Language();
25
 
        Language(const Language& other);
26
 
        Language &operator=(const Language& other);
27
 
 
28
 
        QString code() const;
29
 
        QString name() const;
30
 
        QString territory() const;
31
 
    private:
32
 
        LanguagePrivate* d;
33
 
    };
34
 
};
35
 
 
36
 
#endif // QLIGHTDM_LANGUAGE_H