27 lines
754 B
C++
27 lines
754 B
C++
// T3DFrame.hpp: interface for the Tool3D_Frame class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_T3DFRAME_HPP__2A23345F_F475_11D1_95F0_00A02416A985__INCLUDED_)
|
|
#define AFX_T3DFRAME_HPP__2A23345F_F475_11D1_95F0_00A02416A985__INCLUDED_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
class Tool3D_Frame : public CSplitFrame
|
|
{
|
|
public:
|
|
CPA_DialogList *m_p_clDialogList;
|
|
CPA_BaseObjectList *m_p_clBaseObjectList;
|
|
BOOL m_bDisplayAllFam;
|
|
virtual BOOL OnCreateClient( LPCREATESTRUCT lpcs, CCreateContext* pContext);
|
|
Tool3D_Frame();
|
|
virtual ~Tool3D_Frame();
|
|
|
|
private:
|
|
CSplitterWnd m_clSplitter;
|
|
};
|
|
|
|
#endif // !defined(AFX_T3DFRAME_HPP__2A23345F_F475_11D1_95F0_00A02416A985__INCLUDED_)
|