~lightdm-team/lightdm/1.4

« back to all changes in this revision

Viewing changes to libldmgreeter-qt/ldmsession.h

  • Committer: robert.ancell at canonical
  • Date: 2010-11-23 23:19:12 UTC
  • Revision ID: robert.ancell@canonical.com-20101123231912-2hkp2b9n4c8uie9a
Add libldmgreeter-qt (David Edmundson)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef LDMSESSION_H
 
2
#define LDMSESSION_H
 
3
 
 
4
#include <QString>
 
5
 
 
6
class LdmSessionPrivate;
 
7
 
 
8
class Q_DECL_EXPORT LdmSession
 
9
{
 
10
public:
 
11
    LdmSession(const QString& key, const QString &name, const QString &comment);
 
12
    LdmSession(const LdmSession& other);
 
13
    ~LdmSession();
 
14
    LdmSession &operator=(const LdmSession& other);
 
15
 
 
16
    QString key() const;
 
17
    QString name() const;
 
18
    QString comment() const;
 
19
 
 
20
private:
 
21
    LdmSessionPrivate *d;
 
22
 
 
23
};
 
24
 
 
25
#endif // LDMSESSION_H