]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - libldmgreeter-qt/ldmsession.h
libldmgreeter -> libldmgreeter-gobject
[sojka/lightdm.git] / libldmgreeter-qt / ldmsession.h
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