~lightdm-team/lightdm/1.4

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef GREETER_H
#define GREETER_H

#include <QWidget>

class LoginPrompt;

class Greeter : public QWidget
{
    Q_OBJECT
public:
    explicit Greeter();
    ~Greeter();

private:
};

#endif // GREETER_H