///////////////////////////////////////////////////////////////////////////// //主要功能: // SegY读写类 // //程序编写: 2008-11-09 // // ///////////////////////////////////////////////////////////////////////////// #pragma once #include "filesegy.h" #include ".\httpget.h" namespace NFile64 { class CFileSegyHttp : public CFileSegy { public: CFileSegyHttp(void); virtual ~CFileSegyHttp(void); virtual BOOL Open(LPCTSTR lpHttpFileName); virtual __int64 Seek(__int64 offset, int origin); virtual UINT Read(void* lpBuf, UINT nCount); virtual void Close(void); virtual BOOL IsOpen(void); protected: CHttpGet* m_pHttpGet; }; };