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.
28 lines
343 B
C++
28 lines
343 B
C++
//
|
|
// @ Project : Well
|
|
// @ File Name : WellTrack.h
|
|
// @ Date : 2010/7/30
|
|
// @ Author :
|
|
//
|
|
//
|
|
|
|
|
|
#if !defined(_WELLTRACK_H)
|
|
#define _WELLTRACK_H
|
|
|
|
#include "TrackPoint.h"
|
|
|
|
namespace NWell
|
|
{
|
|
|
|
class CWellTrack {
|
|
public:
|
|
String m_strTrackName;
|
|
bool m_bAdjusted;
|
|
bool m_bPointCount;
|
|
CTrackPoint m_TrackPoints;
|
|
};
|
|
|
|
};
|
|
|
|
#endif //_WELLTRACK_H
|