2#pragma warning(disable : 4251)
9class __declspec(dllexport) EntityResultBase
15 CARTESIAN_EDGES_3D = 1,
16 CARTESIAN_FACES_3D = 2,
17 CARTESIAN_DUAL_EDGES_3D = 3,
18 CARTESIAN_DUAL_FACES_3D = 4,
19 CARTESIAN_NODE_VECTORS = 5,
20 CARTESIAN_DUAL_NODE_VECTORS = 6,
21 UNSTRUCTURED_SCALAR = 7,
22 UNSTRUCTURED_VECTOR = 8
25 EntityResultBase() : resultType(UNKNOWN) {};
26 virtual ~EntityResultBase() {};
28 void setResultType(tResultType type) { resultType = type; }
29 tResultType getResultType(
void) {
return resultType; }
32 tResultType resultType;