byDlg.h
上传用户:qdzhkyjx
上传日期:2013-04-04
资源大小:43k
文件大小:2k
源码类别:

词法分析

开发平台:

Visual C++

  1. // byDlg.h : header file
  2. //
  3. #if !defined(AFX_BYDLG_H__B1839D0D_A081_4791_8F8A_05AC926E5C51__INCLUDED_)
  4. #define AFX_BYDLG_H__B1839D0D_A081_4791_8F8A_05AC926E5C51__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CByDlg dialog
  10. #include<string.h>
  11. #include<ctype.h>
  12. #include<conio.h>
  13. #define  MAX 18 //分析表的最大容量
  14. #define  MAXBUF 255
  15. #include"link.h"
  16. class CByDlg : public CDialog
  17. {
  18. // Construction
  19. public:
  20. void analyse(FILE *fpin,FILE *fpout);
  21. int search(char *temp);
  22. void init();
  23. CByDlg(CWnd* pParent = NULL); // standard constructor
  24. // Dialog Data
  25. //{{AFX_DATA(CByDlg)
  26. enum { IDD = IDD_BY_DIALOG };
  27. CLink m_me;
  28. //}}AFX_DATA
  29. // ClassWizard generated virtual function overrides
  30. //{{AFX_VIRTUAL(CByDlg)
  31. public:
  32. virtual BOOL PreTranslateMessage(MSG* pMsg);
  33. protected:
  34. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. protected:
  38. HICON m_hIcon;
  39. CString m_strFileName;
  40. // Generated message map functions
  41. //{{AFX_MSG(CByDlg)
  42. virtual BOOL OnInitDialog();
  43. afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
  44. afx_msg void OnPaint();
  45. afx_msg HCURSOR OnQueryDragIcon();
  46. afx_msg void OnOpen();
  47. afx_msg void OnFenxi();
  48. afx_msg void OnStatic1();
  49. afx_msg void OnSave();
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. private:
  53. CFont m_font;
  54. };
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_BYDLG_H__B1839D0D_A081_4791_8F8A_05AC926E5C51__INCLUDED_)