reman3/Rayman_X/cpa/tempgrp/TIA/Inc/EdIRREdP.hpp

40 lines
774 B
C++

// EdIRREdP.hpp : header file
//
#ifndef _EDIRREDP_HPP_
#define _EDIRREDP_HPP_
#if _MSC_VER >= 1000
#pragma once
#endif // _MSC_VER >= 1000
/////////////////////////////////////////////////////////////////////////////
// class CPA_EdIR_UndoPaste
/////////////////////////////////////////////////////////////////////////////
#include "ITF\CPAMdf.hpp"
class CPA_EdIR_EditCtrl;
class CPA_EdIR_UndoPaste : public CPA_Modif
{
// Construction
public:
CPA_EdIR_UndoPaste(CPA_EdIR_EditCtrl *,CString,long,long,BOOL bBlock=FALSE);
~CPA_EdIR_UndoPaste();
// Attributes
private:
CPA_EdIR_EditCtrl *m_pclEditCtrl;
CString m_csString;
long m_lIndex;
long m_lScrollPosition;
// Operations
public:
BOOL Do();
BOOL Undo();
};
#endif //_EDIRREDP_HPP_