You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
843 B
C++
33 lines
843 B
C++
#ifndef ACTION_MODIFIED_WELLSECTION_NOTWELLS_ITEM_H
|
|
#define ACTION_MODIFIED_WELLSECTION_NOTWELLS_ITEM_H
|
|
|
|
|
|
#include "ActionModifiedItem.h"
|
|
#include "WellPoleLib/WellBaseObj.h"
|
|
|
|
namespace NAction
|
|
{
|
|
class CActionModifiedNotWell :public CActionModifiedItem
|
|
{
|
|
public:
|
|
CActionModifiedNotWell(CSigmaDoc* ppDoc , UINT actionType, const CPositionList& list);
|
|
CActionModifiedNotWell(CSigmaDoc* ppDoc , UINT actionType);
|
|
virtual ~CActionModifiedNotWell(void);
|
|
|
|
void AddCloneItem(const CPositionList& list);
|
|
virtual bool AddCloneItem(POSITION pos, COne* pOne, bool bCreateAdd = true);
|
|
protected:
|
|
virtual void PerformOperation(void);
|
|
virtual void PerformOperation(std::unique_ptr<COne> ModifiedEntry::* member); //ÔÚc#¶ËÖÐÐèÒªÌí¼ÓÕâ¸ö
|
|
|
|
WELLOBJVECTOR m_WellObjBaseArr;
|
|
CArray<long, long> m_indexArray;
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#pragma once
|
|
|
|
#endif //
|