versadac  1
versadac - Scalable Recorder Firmware
uhh_messageitem.h
1 /*****************************************************************************
2 FILE : U H H _ M E S S A G E I T E M . H
3 VERSION : $Id: uhh_messageitem.h 4938 2006-10-10 14:20:18Z martinto $
4 AUTHOR : Paul Travers
5 SYSTEM : Gnu C++
6 DESCRIPTION : UHH message item class for holding messages retrieved from the
7  history when navigating for messages only.
8 *****************************************************************************/
9 
10 #if !defined __UHH_MESSAGEITEM_H
11 #define __UHH_MESSAGEITEM_H
12 
13 #include "uhh_grouphist.h"
14 
15 
16 
17 class UhhMessageItem : public UhhHeap
18 {
19 public:
20  double m_dPtime; // Pseudo-time for the message
21  sint32 m_nCategory; // define in ENUM_MsgLogCategories
22  sint32 m_nNumBytes; // length of the message
23  uint8 *m_auMessage; // message content
24 
25  // PUBLIC METHODS
26 
28  ~UhhMessageItem();
29 
30 };
31 
32 
33 #endif
34 
Definition: uhh_messageitem.h:17
Definition: uhh_heap.h:31