Visual+C++网络通信协议分析

源代码在线查看: urldlg.h

软件大小: 4.08M
上传用户: m880963
关键词: Visual 网络通信 协议分析
下载地址: 免注册下载 普通下载 VIP

相关代码

				#if !defined(URLDLG_H_)
				#define URLDLG_H_
				
				#if _MSC_VER >= 1000
				#pragma once
				#endif // _MSC_VER >= 1000
				// URLDlg.h : header file
				//
				
				/////////////////////////////////////////////////////////////////////////////
				// CURLDlg dialog
				
				class CURLDlg : public CDialog
				{
				protected:
					int m_nMaxPages;
					int m_nMaxLevels;
					BOOL m_bGetMultimedia;
					CString m_strURL;
				
				public:
					void SetMaxPages(int nMaxPages) { m_nMaxPages = nMaxPages; }
					void SetMaxLevels(int nMaxLevels) { m_nMaxLevels = nMaxLevels; }
					void SetGetMultimedia(BOOL bMultimedia) { m_bGetMultimedia = bMultimedia; }
					void SetURL(CString& strURL) { m_strURL = strURL; }
					CString GetURL() { return m_strURL; }
				
				// Construction
				public:
					CURLDlg(CWnd* pParent = NULL);   // standard constructor
				
				// Dialog Data
					//{{AFX_DATA(CURLDlg)
					enum { IDD = IDD_SNAG };
						// NOTE: the ClassWizard will add data members here
					//}}AFX_DATA
				
				
				// Overrides
					// ClassWizard generated virtual function overrides
					//{{AFX_VIRTUAL(CURLDlg)
					protected:
					virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
					//}}AFX_VIRTUAL
				
				// Implementation
				protected:
				
					// Generated message map functions
					//{{AFX_MSG(CURLDlg)
					virtual void OnOK();
					virtual BOOL OnInitDialog();
					afx_msg void OnHelpbtn();
					//}}AFX_MSG
					DECLARE_MESSAGE_MAP()
				};
				
				//{{AFX_INSERT_LOCATION}}
				// Microsoft Developer Studio will insert additional declarations immediately before the previous line.
				
				#endif 
							

相关资源