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
413 B
C++
23 lines
413 B
C++
#pragma once
|
|
class CEntityBend
|
|
{
|
|
public:
|
|
CEntityBend();
|
|
~CEntityBend();
|
|
void Draw(CDC* pDC, COLORREF color);
|
|
void SetName(LPCTSTR leftWell, LPCTSTR leftStrati, LPCTSTR rightWellName, LPCTSTR rightStrati);
|
|
void SetData(CPointList& pl);
|
|
|
|
CPen m_pen;
|
|
CPointList points;
|
|
void DrawSelect(CDC* pdc);
|
|
bool selected;
|
|
public:
|
|
CString leftWell;
|
|
CString leftStrati;
|
|
CString rightWell;
|
|
CString rightStrati;
|
|
};
|
|
|
|
|