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.
21 lines
334 B
C
21 lines
334 B
C
|
1 month ago
|
#pragma once
|
||
|
|
|
||
|
|
#include "RowColRange.h"
|
||
|
|
#include "SeisSurvey3D.h"
|
||
|
|
|
||
|
|
namespace NSeis
|
||
|
|
{
|
||
|
|
|
||
|
|
class AFX_EXT_CLASS CSeisSurveyWorkModify
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CSeisSurveyWorkModify(CSeisSurvey3D* pSeisSurvey,CCubeRange& range);
|
||
|
|
~CSeisSurveyWorkModify(void);
|
||
|
|
|
||
|
|
private:
|
||
|
|
CSeisSurvey3D* m_pSurvey;
|
||
|
|
bool m_bIsWork;
|
||
|
|
CCubeRange m_bakRange;
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|