]>
Commit | Line | Data |
---|---|---|
7cb34e5c A |
1 | /*\r |
2 | * Copyright (c) 2002-2004 Apple Computer, Inc. All rights reserved.\r | |
3 | *\r | |
4 | * @APPLE_LICENSE_HEADER_START@\r | |
5 | * \r | |
6 | * This file contains Original Code and/or Modifications of Original Code\r | |
7 | * as defined in and that are subject to the Apple Public Source License\r | |
8 | * Version 2.0 (the 'License'). You may not use this file except in\r | |
9 | * compliance with the License. Please obtain a copy of the License at\r | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this\r | |
11 | * file.\r | |
12 | * \r | |
13 | * The Original Code and all software distributed under the License are\r | |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER\r | |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,\r | |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,\r | |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.\r | |
18 | * Please see the License for the specific language governing rights and\r | |
19 | * limitations under the License.\r | |
20 | * \r | |
21 | * @APPLE_LICENSE_HEADER_END@\r | |
22 | \r | |
23 | Change History (most recent first):\r | |
24 | \r | |
25 | $Log: SharedSecret.h,v $ | |
26 | Revision 1.2 2005/03/03 19:55:21 shersche | |
27 | <rdar://problem/4034481> ControlPanel source code isn't saving CVS log info | |
28 | \r | |
29 | \r | |
30 | */\r | |
31 | \r | |
32 | \r | |
33 | #pragma once\r | |
34 | \r | |
35 | #include "resource.h"\r | |
36 | \r | |
37 | \r | |
38 | //---------------------------------------------------------------------------------------------------------------------------\r | |
39 | // CSharedSecret\r | |
40 | //---------------------------------------------------------------------------------------------------------------------------\r | |
41 | \r | |
42 | class CSharedSecret : public CDialog\r | |
43 | {\r | |
44 | DECLARE_DYNAMIC(CSharedSecret)\r | |
45 | \r | |
46 | public:\r | |
47 | CSharedSecret(CWnd* pParent = NULL); // standard constructor\r | |
48 | virtual ~CSharedSecret();\r | |
49 | \r | |
50 | // Dialog Data\r | |
51 | enum { IDD = IDR_SECRET };\r | |
52 | \r | |
53 | void\r | |
54 | Commit();\r | |
55 | \r | |
56 | protected:\r | |
57 | virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support\r | |
58 | \r | |
59 | DECLARE_MESSAGE_MAP()\r | |
60 | \r | |
61 | public:\r | |
62 | CString m_secret;\r | |
63 | CString m_secretName;\r | |
64 | };\r |