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.
23 lines
558 B
C++
23 lines
558 B
C++
#pragma once
|
|
#include "SigmaDoc.h"
|
|
#include "ItemCurveEditDeleteMulNodes.h"
|
|
|
|
namespace NItem
|
|
{
|
|
class CItemBranchCurveEdit: public CItemCurveEditDeleteMulNodes
|
|
{
|
|
public:
|
|
CItemBranchCurveEdit(CSigmaDoc * pDoc, CPositionList & selectionCache, BOOL bPopupToolbar = TRUE);
|
|
virtual ~CItemBranchCurveEdit(void);
|
|
|
|
virtual void DrawMoveLine(void);
|
|
void OnLButtonUp(CDC * pDC, UINT nFlags, CPoint point, int vk);
|
|
private:
|
|
WellGroupBranchStruct m_BranchInfo;
|
|
WellGroupBranchStruct m_BranchInfoOther;
|
|
public:
|
|
CWellBranch* m_pBranch = nullptr;
|
|
};
|
|
};
|
|
|