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.
20 lines
318 B
C
20 lines
318 B
C
|
1 month ago
|
#pragma once
|
||
|
|
|
||
|
|
class CWellSymbolLibUtility
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CWellSymbolLibUtility();
|
||
|
|
~CWellSymbolLibUtility();
|
||
|
|
|
||
|
|
protected:
|
||
|
|
|
||
|
|
void InitSymbolLib(CString strfile);
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
extern AFX_EXT_API void AfxSetGlobalWellXy(CXy* pXy);
|
||
|
|
extern AFX_EXT_API CXy * AfxGetGlobalWellXy();
|
||
|
|
extern AFX_EXT_API void AfxReleaseGlobalWellXy();
|
||
|
|
|
||
|
|
|