diff options
Diffstat (limited to 'src/tdebluezauth/authorize.h')
-rw-r--r-- | src/tdebluezauth/authorize.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/tdebluezauth/authorize.h b/src/tdebluezauth/authorize.h new file mode 100644 index 0000000..ff9e9b3 --- /dev/null +++ b/src/tdebluezauth/authorize.h @@ -0,0 +1,47 @@ +/* + * + * Authorization Agent implementation of bluez5 + * + * Copyright (C) 2018 Emanoil Kotsev <[email protected]> + * + * + * This file is part of tdebluezauth. + * + * tdebluezauth is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * tdebluezauth is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with kbluetooth; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + */ + +#ifndef AUTHORIZE_H +#define AUTHORIZE_H + +#include <tqlabel.h> + +#include <kdialogbase.h> + +#include "application.h" +#include "authdialog.h" + +class AuthorizeDialog : public KDialogBase +{ + + Q_OBJECT + +public: + AuthorizeDialog(const TQString &addr, const TQString &devName, const TQString &service); + ~AuthorizeDialog(); + AuthDialog *authDlg; +}; + +#endif |