The Robot Application Programming Interface Delegate Project
RAPID Logo

Command.idl

Go to the documentation of this file.
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 
00020 module rapid {
00021 
00032     enum Priority {
00033         PRI_LOW,
00034         PRI_MEDIUM,
00035         PRI_HIGH,
00036         PRI_ASYNC
00037     };
00038 
00042     valuetype Command : Message {
00043 
00045         public String64 cmdName;
00046 
00048         public String64 cmdID;
00049 
00051         public String32 cmdSrc;
00052 
00054         public Priority cmdPriority;
00055 
00057         public String32 subsysName;
00058 
00060         public ParameterSequence16 arguments;
00061     };
00062 };
00063 
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines