1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
// File: VrmlData_ErrorStatus.hxx
// Created: 28.10.06 12:34
// Author: Alexander GRIGORIEV
// Copyright: Open Cascade 2006
#ifndef VrmlData_ErrorStatus_HeaderFile
#define VrmlData_ErrorStatus_HeaderFile
/**
* Status of read/write or other operation.
*/
enum VrmlData_ErrorStatus {
VrmlData_StatusOK = 0,
VrmlData_EmptyData,
VrmlData_UnrecoverableError,
VrmlData_GeneralError,
VrmlData_EndOfFile,
VrmlData_NotVrmlFile,
VrmlData_CannotOpenFile,
VrmlData_VrmlFormatError,
VrmlData_NumericInputError,
VrmlData_IrrelevantNumber,
VrmlData_BooleanInputError,
VrmlData_StringInputError,
VrmlData_NodeNameUnknown,
VrmlData_NonPositiveSize,
VrmlData_ReadUnknownNode,
VrmlData_NonSupportedFeature,
VrmlData_OutputStreamUndefined,
VrmlData_NotImplemented
};
#endif