Курсовая работа: Проект текстового редактора
#include "stdafx.h"
#include "Menu.h"
#include "mein.h"
// mein dialog
IMPLEMENT_DYNAMIC(mein, CDialog)
mein::mein(CWnd* pParent /*=NULL*/)
: CDialog(mein::IDD, pParent)
{
}
mein::~mein()
{
}
void mein::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(mein, CDialog)
END_MESSAGE_MAP()
// mein message handlers
Код модуля menu.cpp
// Menu.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "Menu.h"
#include "MenuDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CMenuApp