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.
24 lines
440 B
C++
24 lines
440 B
C++
#pragma once
|
|
#ifndef GraphDataFileAnlyse_h__
|
|
#define GraphDataFileAnlyse_h__
|
|
|
|
namespace NChart
|
|
{
|
|
|
|
class CWellAttributeData;
|
|
class CGraphDataFileAnlyse
|
|
{
|
|
public:
|
|
CGraphDataFileAnlyse(CString strFilePath = _T(""));
|
|
~CGraphDataFileAnlyse(void);
|
|
void SetFilePath(CString strFilePath);
|
|
BOOL GetData();
|
|
private:
|
|
CString m_strFilePath;
|
|
vector<CWellAttributeData> m_vecWellAttributeData;
|
|
};
|
|
|
|
}//namespace
|
|
|
|
|
|
#endif // GraphDataFileAnlyse_h__
|