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.

15 lines
277 B
C

1 month ago
#pragma once
class AFX_EXT_CLASS CWellDataObj
{
public:
CWellDataObj(void);
virtual ~CWellDataObj(void);
virtual void Clear(BOOL bRelease=TRUE);
virtual int GetCount();
virtual void Serialize(CArchive& ar);
virtual void operator = (CWellDataObj &data);
int m_nID;
};