MyPaint/CPaintFrame.h
2022-02-24 06:02:44 +03:00

14 lines
239 B
C++

#pragma once
#include <afxwin.h>
#include "CPaintView.h"
class CPaintFrame : public CFrameWnd {
public:
CPaintFrame() {};
CPaintView m_wndView;
protected:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
DECLARE_MESSAGE_MAP()
};