// Interface.h
// Code by Erato.
// 2006. 05. 16
#ifndef _INTERFACE_H_
#define _INTERFACE_H_
class CInterface
{
public:
CInterface(void);
virtual ~CInterface(void);
// variable
public:
// function
public:
// variable
protected:
// function
protected:
// variable
private:
// function
private:
};
#endif
요렇게 정의해놓고 쓰자..
'Programming > MFC' 카테고리의 다른 글
컨트롤의 Font 만들기 (0) | 2006.05.23 |
---|---|
윈도우 중앙에 띄우기 (0) | 2006.05.20 |
CreateDialogIndirect 모달리스 다이얼로그 (0) | 2006.05.17 |
DialogBoxIndirect 사용하여 다이얼로그 박스 띄우기 (0) | 2006.05.16 |
분할 윈도우를 이용하여 뷰 전환하기 (0) | 2006.05.05 |