40 lines
901 B
C++
40 lines
901 B
C++
// EdIRBVwX.cpp : header file
|
|
//
|
|
|
|
#ifndef _EDIRBVWX_HPP_
|
|
#define _EDIRBVWX_HPP_
|
|
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif // _MSC_VER >= 1000
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// class CPA_EdIR_UndoDeleteAllBehaviours
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "ITF\CPAMdf.hpp"
|
|
#include "EdIRBELs.hpp"
|
|
|
|
class CPA_EdIR_DiagView;
|
|
|
|
class CPA_EdIR_UndoDeleteAllBehaviours : public CPA_Modif
|
|
{
|
|
// Construction
|
|
public:
|
|
CPA_EdIR_UndoDeleteAllBehaviours(CPA_EdIR_DiagView *,CPA_EdIR_MainBehaviourList *,BOOL bBloc=FALSE);
|
|
~CPA_EdIR_UndoDeleteAllBehaviours();
|
|
|
|
// Attributes
|
|
private:
|
|
CPA_EdIR_DiagView *m_pclDiagView;
|
|
CPA_EdIR_MainBehaviourList *m_pclMainBehaviourList;
|
|
CPA_EdIR_MainBehaviourList m_clMainBehaviourList;
|
|
|
|
// Operations
|
|
public:
|
|
BOOL Do();
|
|
BOOL Undo();
|
|
};
|
|
|
|
#endif //_EDIRBVWX_HPP_
|