You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

65 lines
1.3 KiB

// TestLibDlgDlg.h: 헤더 파일
//
#pragma once
#include <chrono>
#include <filesystem>
#include <map>
#include <string>
#include "a2l/a2lfile.h"
#include "a2l/a2mlblock.h"
#include "a2l/ifdatablock.h"
using namespace std::filesystem;
using namespace std::chrono_literals;
class CTestLibDlgDlgAutoProxy;
// CTestLibDlgDlg 대화 상자
class CTestLibDlgDlg : public CDialogEx
{
DECLARE_DYNAMIC(CTestLibDlgDlg);
friend class CTestLibDlgDlgAutoProxy;
// 생성입니다.
public:
CTestLibDlgDlg(CWnd* pParent = nullptr); // 표준 생성자입니다.
virtual ~CTestLibDlgDlg();
// 대화 상자 데이터입니다.
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_TESTLIBDLG_DIALOG };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 지원입니다.
// 구현입니다.
protected:
CTestLibDlgDlgAutoProxy* m_pAutoProxy;
HICON m_hIcon;
BOOL CanExit();
// 생성된 메시지 맵 함수
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnClose();
virtual void OnOK();
virtual void OnCancel();
DECLARE_MESSAGE_MAP()
private:
void loadA2lFile(std::string strFilePath);
void AddLogString(std::string strMessage);
public:
afx_msg void OnBnClickedButtonOpen();
};