[4de1c7]: / app / resources / LeapSDK / v3_python27 / src / MessageSeverity.cs

Download this file

25 lines (23 with data), 907 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/******************************************************************************\
* Copyright (C) 2012-2016 Leap Motion, Inc. All rights reserved. *
* Leap Motion proprietary and confidential. Not for distribution. *
* Use subject to the terms of the Leap Motion SDK Agreement available at *
* https://developer.leapmotion.com/sdk_agreement, or another agreement *
* between Leap Motion and you, your company or other organization. *
\******************************************************************************/
namespace Leap
{
/**
* Reports whether the message is for
* a severe failure, a recoverable warning, or a status change.
* @since 3.0
*/
public enum MessageSeverity
{
MESSAGE_UNKNOWN = 0,
MESSAGE_CRITICAL = 1,
MESSAGE_WARNING = 2,
/** A verbose, informational message */
MESSAGE_INFORMATION = 3
}
}