versadac  1
versadac - Scalable Recorder Firmware
am_historyrealch.h
1 /*****************************************************************************
2 FILE : am_historyrealch.h
3 VERSION : $Id: am_historyrealch.h 4938 2006-10-10 14:20:18Z martinto $
4 AUTHOR : Sandra Herring
5 SYSTEM : GNU C++ for Power PC
6 DESCRIPTION : Header file for History Real Channel class.
7 *****************************************************************************/
8 
9 #if !defined(__AM_HISTORYREALCH_H)
10 #define __AM_HISTORYREALCH_H
11 
12 #if !defined(__AM_HISTORYCHAN_H)
13 #include "am_historychan.h"
14 #endif
15 
17 {
18  public :
19 
20 /*------------------------------------------------------------------------------
21 FUNCTION : AM_HistoryRealChannelConfig constructor
22 DESCRIPTION :
23 ARGUMENTS :
24 RETURN : N/A
25 NOTES :
26 ------------------------------------------------------------------------------*/
28 
29  // services inherited from class AM_HistoryChannelConfig
30 
31  virtual sint32 read( AM_HistoryStream & stream );
32  virtual uint16 recordID();
33 
34  // attributes
35 
36  private :
37  uint8 m_Type;
38 
39 }; // class AM_HistoryRealChannelConfig
40 
41 #endif // end of __AM_HISTORYREALCH_H conditional include
42 
Definition: am_historystream.h:23
Definition: am_historyrealch.h:16
Definition: am_historychan.h:21