diff options
author | Timothy Pearson <[email protected]> | 2012-05-18 16:03:27 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-05-18 16:03:27 -0500 |
commit | 37acc91cacd3f5c85e3254fcfd5794fcdcbadc27 (patch) | |
tree | 8a724d562c4bf6b2024340f507f58b1d4cf82af6 /src/bondintropage.h | |
parent | 96936f9f1272296b22c7ed6d6e68e944ba78a6b6 (diff) | |
download | kcmldap-37acc91cacd3f5c85e3254fcfd5794fcdcbadc27.tar.gz kcmldap-37acc91cacd3f5c85e3254fcfd5794fcdcbadc27.zip |
Can now add/remove realms to TDE config file
Diffstat (limited to 'src/bondintropage.h')
-rw-r--r-- | src/bondintropage.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/bondintropage.h b/src/bondintropage.h new file mode 100644 index 0000000..b172cb9 --- /dev/null +++ b/src/bondintropage.h @@ -0,0 +1,41 @@ +/*************************************************************************** + * Copyright (C) 2012 by Timothy Pearson * + * [email protected] * + * * + * 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 * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * 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. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#ifndef BONDINTROPAGE_H +#define BONDINTROPAGE_H + +#include "ldap.h" + +#include "bondintropagedlg.h" + +class TQStringList; + +/**Abstract class for the first wizard page. Sets the according selection on save() + *@author Timothy Pearson + */ + +class BondIntroPage : public BondIntroPageDlg { + Q_OBJECT +public: + BondIntroPage(TQWidget *parent=0, const char *name=0); + ~BondIntroPage(); +}; + +#endif |