// test1Dlg.h : header file // #pragma once #include "afxwin.h" #include "sudoku.h" // Ctest1Dlg dialog class Ctest1Dlg : public CDialog { // Construction public: Ctest1Dlg(CWnd* pParent = NULL); // standard constructor // Dialog Data enum { IDD = IDD_TEST1_DIALOG }; protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support // Implementation protected: HICON m_hIcon; Sudoku m_sudoku; // Generated message map functions virtual BOOL OnInitDialog(); afx_msg void OnPaint(); afx_msg HCURSOR OnQueryDragIcon(); DECLARE_MESSAGE_MAP() afx_msg void OnBnClickedOk(); afx_msg void OnBnClickedButton1(); afx_msg void OnBnClickedClear(); afx_msg void OnLButtonDown(UINT nFlags, CPoint point); afx_msg void OnBnClickedAbout(); afx_msg void OnBnClickedClearcalc(); virtual void OnOK(); virtual void OnCancel(); void DrawMatrix(void); };