2013-07-29 16:28:19 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) by Krzesimir Nowak <krzesimir@endocode.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
2013-07-30 12:48:26 +04:00
|
|
|
* the Free Software Foundation; version 2 of the License.
|
2013-07-29 16:28:19 +04:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MIRALL_WIZARD_ABSTRACT_CREDS_WIZARD_PAGE_H
|
|
|
|
#define MIRALL_WIZARD_ABSTRACT_CREDS_WIZARD_PAGE_H
|
|
|
|
|
|
|
|
#include <QWizardPage>
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
namespace OCC
|
2013-07-29 16:28:19 +04:00
|
|
|
{
|
|
|
|
|
|
|
|
class AbstractCredentials;
|
|
|
|
|
2015-06-26 18:07:47 +03:00
|
|
|
/*!
|
|
|
|
* \brief The AbstractCredentialsWizardPage class
|
|
|
|
* \ingroup gui
|
|
|
|
*/
|
2013-07-29 16:28:19 +04:00
|
|
|
class AbstractCredentialsWizardPage : public QWizardPage
|
|
|
|
{
|
|
|
|
public:
|
2014-07-10 01:22:28 +04:00
|
|
|
void cleanupPage() Q_DECL_OVERRIDE;
|
2014-02-23 14:02:03 +04:00
|
|
|
virtual AbstractCredentials* getCredentials() const = 0;
|
2013-07-29 16:28:19 +04:00
|
|
|
};
|
|
|
|
|
2014-11-10 00:34:07 +03:00
|
|
|
} // namespace OCC
|
2013-07-29 16:28:19 +04:00
|
|
|
|
|
|
|
#endif
|