DragonNest/Server/ServiceMonitorEx/Source/SubControlGaMeritView.h
2024-12-20 16:56:44 +08:00

41 lines
1.8 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "Define.h"
#include "ServiceInfo.h"
#include "SubControlBaseView.h"
#include "OXGridList.h"
#include "OXGridEdit.h"
#include <map>
#include <vector>
// CSubControlGaMeritView 대화 상자입니다.
class CSubControlGaMeritView : public CSubControlBaseView
{
DECLARE_DYNAMIC(CSubControlGaMeritView)
public:
CSubControlGaMeritView(CWnd* pParent = NULL); // 표준 생성자입니다.
virtual ~CSubControlGaMeritView();
// 대화 상자 데이터입니다.
enum { IDD = IDD_CTRLFRM_GAMERIT };
public:
void UpdateData();
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
DECLARE_MESSAGE_MAP()
protected:
virtual void OnOK();
virtual void OnCancel();
public:
virtual BOOL OnInitDialog();
virtual BOOL PreTranslateMessage(MSG* pMsg);
afx_msg void OnPaint();
afx_msg void OnSize(UINT nType, int cx, int cy);
afx_msg void OnDestroy();
};