00001 /****************************************************************************** 00002 * 00003 * \file sml/flag.h 00004 * \brief SML FLAG 00005 * 00006 * \if NODOC 00007 * $Log: flag.h_v $ 00008 * Revision 1.2 2007/05/08 15:45:48 dwilliss 00009 * SML namespace 00010 * 00011 * Revision 1.1 2007/05/04 22:39:36 dwilliss 00012 * Initial revision 00013 * 00014 * \endif 00015 */ 00016 /*****************************************************************************/ 00017 00018 #ifndef INC_SML_FLAG_H 00019 #define INC_SML_FLAG_H 00020 00021 #ifndef INC_MI32_STDDEFNS_H 00022 #include <mi32/stddefns.h> 00023 #endif 00024 00025 namespace SML { 00026 /***************************************************************************/ 00036 class FLAG { 00037 public: 00038 char *name; 00039 UINT32 value; 00040 char *desc; 00041 }; 00042 00043 } // end of SML namespace 00044 00045 typedef SML::FLAG SMLFLAG; 00046 00047 #endif // INC_SML_FLAG_H 00048 00049
1.6.1