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.
|
#pragma once
|
|
|
|
// 数值试井绘图对象类型
|
|
enum NM_Obj_Type
|
|
{
|
|
NOT_Point = 0, //点
|
|
NOT_Line, //线
|
|
NOT_Polygon, //多边形
|
|
NOT_Other, //其它
|
|
NOT_UNKNWON
|
|
};
|