49 lines
1.7 KiB
C++
49 lines
1.7 KiB
C++
/*ROMTEAM WorldEditor*/
|
|
/*//////////////////////////////////////////////////////////////////////////////////////*/
|
|
/* File : Symbolical3D.hpp: interface for the Symbolical3D class.*/
|
|
/* Author : Viorel Preoteasa*/
|
|
/* Date : 97.11*/
|
|
/* Description :*/
|
|
/*//////////////////////////////////////////////////////////////////////////////////////*/
|
|
#ifndef __SYMBOLICAL3D_HPP__
|
|
#define __SYMBOLICAL3D_HPP__
|
|
|
|
/****************************************/
|
|
#ifndef CPA_EXPORT
|
|
#if defined(CPA_WANTS_IMPORT)
|
|
#define CPA_EXPORT __declspec(dllimport)
|
|
#elif defined(CPA_WANTS_EXPORT)
|
|
#define CPA_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define CPA_EXPORT
|
|
#endif
|
|
#endif
|
|
/****************************************/
|
|
|
|
/****************************************/
|
|
/* classes*/
|
|
/****************************************/
|
|
class CPA_EXPORT Symbolical3D : public Shape3D
|
|
{
|
|
/* data*/
|
|
private:
|
|
ACP_tdxHandleOfElement m_hElement;
|
|
|
|
/* functions*/
|
|
private:
|
|
void CommonSymbolical3D();
|
|
|
|
|
|
public:
|
|
|
|
ACP_tdxHandleOfElement GetHElement(){return m_hElement;}
|
|
|
|
/* constructors/destructors*/
|
|
Symbolical3D (BOOL bModifiable, CPA_EditorBase *_p_oEditor, /*ACP_tdxIndex xNbPoints, ACP_tdxIndex xNbElements,*/ const CString _csName = "", tdeSaveStatus _eStatus = E_ss_NoSave);
|
|
Symbolical3D (BOOL bModifiable, CPA_EditorBase *_p_oEditor, /*ACP_tdxIndex xNbPoints, ACP_tdxIndex xNbElements,*/ CPA_BaseObject *_p_oOwnerFile, const CString _csName = "", char *_p_cRefPath = NULL, tdeSaveStatus _eStatus = E_ss_Responsible);
|
|
Symbolical3D (BOOL bModifiable, CPA_EditorBase *_p_oEditor, CPA_BaseObject *_p_oOwnerFile, ACP_tdxHandleOfObject _hObject, const CString _csName = "", char *_p_cRefPath = NULL, tdeSaveStatus _eStatus = E_ss_Modify);
|
|
~Symbolical3D();
|
|
};
|
|
|
|
#endif /* Symbolical3D*/
|