| 8 | // KeyWindow �_�C�A���O |
| 9 | IMPLEMENT_DYNAMIC(KeyWindow, CDialog) |
| 10 | KeyWindow::KeyWindow(CWnd* pParent /*=NULL*/) |
| 11 | : CDialog(KeyWindow::IDD, pParent) |
| 12 | { |
| 13 | m_bShowOctave = false; |
| 14 | m_bInit = false; |
| 15 | for(int i=0;i<256;i++) |
| 16 | m_nKeyStatus[i] = 0; |
| 17 | } |
| 18 | |
| 19 | KeyWindow::~KeyWindow() |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected