51 lines
1.4 KiB
C++
51 lines
1.4 KiB
C++
//=========================================================================
|
|
// OBJDLLb.hpp : base of objects DLL
|
|
// This is a part of the CPA project.
|
|
//
|
|
// Version 1.0
|
|
// Creation date 10/06/96
|
|
// Revision date
|
|
//
|
|
// (c) Ubi Studio 1996
|
|
//
|
|
// DO NOT MODIFY THAT FILE. IF SOMETHING NEEDS TO BE CHANGE, PLEASE CONTACT
|
|
// VINCENT GRECO OR CHRISTOPHE BEAUDET.
|
|
//=========================================================================
|
|
#include "stdafx.h"
|
|
#include <afxtempl.h>
|
|
|
|
#ifdef ACTIVE_EDITOR
|
|
#include "acp_base.h"
|
|
#include "itf/CPADLLB.hpp"
|
|
#include "itf/FRMBase.hpp"
|
|
#include "itf/CPAMWorl.hpp"
|
|
|
|
#include "itf/CPAInter.hpp"
|
|
|
|
//#include "CPAPubOb.hpp"
|
|
|
|
|
|
//=========================================================================
|
|
//=========================================================================
|
|
////
|
|
CPA_DLLBase::CPA_DLLBase()
|
|
{
|
|
SetCurrent(FALSE);
|
|
m_p_stDLLIdentity = NULL;
|
|
}
|
|
|
|
//=========================================================================
|
|
//=========================================================================
|
|
////
|
|
CPA_DLLBase::~CPA_DLLBase()
|
|
{
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// private
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#endif //ACTIVE_EDITOR
|