diff options
Diffstat (limited to 'src/bondwizard.h')
-rw-r--r-- | src/bondwizard.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/bondwizard.h b/src/bondwizard.h index 0cdfafd..4296bb7 100644 --- a/src/bondwizard.h +++ b/src/bondwizard.h @@ -28,8 +28,11 @@ #include <kapplication.h> #include <kwizard.h> +#include "ldap.h" + /** prototypes */ class KLanguageCombo; +class BondIntroPage; class BondRealmPage; class BondFinishPage; @@ -38,7 +41,7 @@ class BondWizard : public KWizard { Q_OBJECT public: /** construtor */ - BondWizard(TQWidget* parent=0, const char *name=0); + BondWizard(LDAPRealmConfigList *realmlist, LDAPConfig *ldapconfig, TQWidget* parent=0, const char *name=0); /** destructor */ ~BondWizard(); @@ -64,9 +67,12 @@ private: void setPosition(); private: + BondIntroPage* intropage; BondRealmPage* realmpage; BondFinishPage* finishpage; bool realm_dirty; + LDAPRealmConfigList* m_realmList; + LDAPConfig* m_ldapConfig; protected: // Protected methods // the close button on the titlebar sets e->accept() which we don't want. |