Integration of OCCT 6.5.0 from SVN
[occt.git] / src / Message / Message_StatusType.hxx
CommitLineData
7fd59977 1// File: Message_StatusType.hxx
2// Created: 06.07.07 11:43:48
3// Author: Pavel TELKOV
4// Copyright: Open CASCADE S.A. 2007
5// Original implementation copyright (c) RINA S.p.A.
6
7#ifndef Message_StatusType_HeaderFile
8#define Message_StatusType_HeaderFile
9
10//! Definition of types of execution status supported by
11//! the class Message_ExecStatus
12
13enum Message_StatusType
14{
15 Message_DONE = 0x00000100,
16 Message_WARN = 0x00000200,
17 Message_ALARM = 0x00000400,
18 Message_FAIL = 0x00000800
19};
20
21#endif