MagicSmoke  $VERSION$
backupclient/main.h
Go to the documentation of this file.
1 //
2 // C++ Interface: Backup Client
3 //
4 //
5 // Author: Konrad Rosenbaum <konrad@silmor.de>, (C) 2015
6 //
7 // Copyright: See README/COPYING.GPL files that come with this distribution
8 //
9 //
10 
11 
12 #ifndef MSBAK_MAIN_H
13 #define MSBAK_MAIN_H
14 
15 #include <QDialog>
16 
17 class BLogin:public QDialog
18 {
19  Q_OBJECT
20 public:
21  BLogin();
22 
23 public slots:
24  void login();
25 };
26 
27 #endif
Definition: backupclient/main.h:17
void login()
Definition: backupclient/main.cpp:22
BLogin()
Definition: backupclient/main.cpp:17