summaryrefslogtreecommitdiff
path: root/inc/Message_StatusType.hxx
blob: d26608fe57dd61ff53e33ae4f3d52f3b3a0912fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// File:      Message_StatusType.hxx
// Created:   06.07.07 11:43:48
// Author:    Pavel TELKOV
// Copyright: Open CASCADE S.A. 2007
// Original implementation copyright (c) RINA S.p.A.

#ifndef Message_StatusType_HeaderFile
#define Message_StatusType_HeaderFile

//! Definition of types of execution status supported by
//! the class Message_ExecStatus

enum Message_StatusType 
{
  Message_DONE         = 0x00000100,
  Message_WARN         = 0x00000200,
  Message_ALARM        = 0x00000400,
  Message_FAIL         = 0x00000800
};

#endif