The Robot Application Programming Interface Delegate Project
|
00001 /* 00002 * Copyright (c) 2009 United States Government as represented by the 00003 * Administrator of the National Aeronautics and Space Administration. 00004 * All Rights Reserved. 00005 */ 00006 00007 #include "Message.idl" 00008 00016 module rapid { 00017 00029 enum MessageLevel { 00030 MSG_DEBUG, 00031 MSG_INFO, 00032 MSG_ATTENTION, 00033 MSG_WARN, 00034 MSG_ERROR, 00035 MSG_CRITICAL 00036 }; 00037 00042 valuetype TextMessage : Message { 00043 00045 public MessageLevel level; 00046 00048 public String64 category; 00049 00051 public String2K message; 00052 }; 00053 }; 00054