summaryrefslogtreecommitdiff
path: root/maximus/system/inc/SystemSciMsg.h
diff options
context:
space:
mode:
authorburet2007-06-12 16:50:24 +0000
committerburet2007-06-12 16:50:24 +0000
commitca72c8b5d6276e9ec62d3889e189858ecbb0db2d (patch)
treeb659ad0000c7ba302d0ee1639f2edc3d90e144a2 /maximus/system/inc/SystemSciMsg.h
parentd8dfc330014646b3a0b14b326f067f149256a138 (diff)
Display SCI data
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@285 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'maximus/system/inc/SystemSciMsg.h')
-rw-r--r--maximus/system/inc/SystemSciMsg.h24
1 files changed, 15 insertions, 9 deletions
diff --git a/maximus/system/inc/SystemSciMsg.h b/maximus/system/inc/SystemSciMsg.h
index 47ce5e63ae..6209b2c109 100644
--- a/maximus/system/inc/SystemSciMsg.h
+++ b/maximus/system/inc/SystemSciMsg.h
@@ -53,11 +53,17 @@ private:
// private attributes
//
-
- SystemManager * mpSystemManager;
+
+ // Get from specialized SCI msg header
+ //
System_Type mSpecializedSciMsgType;
+
+ // Specialized SCI msg header
+ //
System_Header * mpSpecializedSciMsgHeader;
+ SystemManager * mpSystemManager;
+
protected:
// protected attributes
@@ -99,11 +105,11 @@ public:
/**
* @return bool
- * @param data_length
- * @param p_data
*/
bool identifySpecializedSciMsgHeader ( );
+ void displaySpecializedSciMsgHeader ( ) const;
+
// public attribute accessor methods
//
@@ -111,24 +117,24 @@ public:
//
/**
- * @return System_Type
+ * @return mSpecializedSciMsgType
*/
System_Type getSpecializedSciMsgType ( ) const;
/**
* @return bool
- * @param type
+ * @param type the new value of mSpecializedSciMsgType
*/
bool setSpecializedSciMsgType ( const System_Type type );
/**
- * @return System_Header *
+ * @return mpSpecializedSciMsgHeader
*/
System_Header * getSpecializedSciMsgHeader ( ) const;
/**
* @return bool
- * @param p_specialized_sci_msg_header
+ * @param p_specialized_sci_msg_header the new value of mpSpecializedSciMsgHeader
*/
bool setSpecializedSciMsgHeader ( const System_Header * p_specialized_sci_msg_header );
@@ -142,7 +148,7 @@ private:
void initAttributes ( ) ;
- void displaySpecializedSciMsgHeader ( ) const;
+ void displaySpecializedSciMsgType ( ) const;
protected: