mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 14:07:58 +03:00
31 lines
No EOL
666 B
C++
31 lines
No EOL
666 B
C++
#ifndef _ELFVIEW_H_
|
|
#define _ELFVIEW_H_
|
|
|
|
#include "OptionWnd.h"
|
|
#include "../ELF.h"
|
|
#include "ELFHeaderView.h"
|
|
#include "ELFSectionView.h"
|
|
#include "ELFProgramView.h"
|
|
#include "ELFSymbolView.h"
|
|
#include "win32/MDIChild.h"
|
|
|
|
class CELFView : public COptionWnd<Framework::Win32::CMDIChild>
|
|
{
|
|
public:
|
|
CELFView(HWND);
|
|
~CELFView();
|
|
void SetELF(CELF*);
|
|
protected:
|
|
long OnSysCommand(unsigned int, LPARAM);
|
|
|
|
private:
|
|
void PopulateList();
|
|
void Delete();
|
|
CELF* m_pELF;
|
|
CELFHeaderView* m_pHeaderView;
|
|
CELFSymbolView* m_pSymbolView;
|
|
CELFSectionView** m_pSectionView;
|
|
CELFProgramView** m_pProgramView;
|
|
};
|
|
|
|
#endif |