00001 00002 /* 00003 pGina ldapAuth code - based upon skeleton code for pGina plugin development 00004 Copyright (C) 2002 Micah Cooper 00005 00006 This program is free software; you can redistribute it and/or 00007 modify it under the terms of the GNU General Public License 00008 as published by the Free Software Foundation; either version 2 00009 of the License, or (at your option) any later version. 00010 00011 This program is distributed in the hope that it will be useful, 00012 but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 GNU General Public License for more details. 00015 00016 You should have received a copy of the GNU General Public License 00017 along with this program; if not, write to the Free Software 00018 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00019 00020 Email: coopermj@muohio.edu 00021 Snail Mail: 00022 Micah Cooper 00023 212A Kreger Hall 00024 Miami University 00025 Oxford OH 45056 00026 */ 00027 #pragma once 00028 00029 #include "Resource.h" 00030 00032 /* Configuration about box dialog */ 00033 class CConfigAbout : public CDialog 00034 { 00035 DECLARE_DYNAMIC(CConfigAbout) 00036 00037 public: 00038 CConfigAbout(CWnd* pParent = NULL); // standard constructor 00039 virtual ~CConfigAbout(); 00040 00041 // Dialog Data 00042 enum { IDD = IDD_ABOUT_TAB }; 00043 00044 protected: 00045 virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support 00046 00047 DECLARE_MESSAGE_MAP() 00048 00049 public: 00050 CString m_version; 00051 00052 afx_msg void OnOK(); 00053 };