home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR9 / WIZTOO.ZIP / CHNNLDEF.H < prev    next >
C/C++ Source or Header  |  1993-09-22  |  402b  |  24 lines

  1. #ifndef _chnnldef_h_
  2. #define _chnnldef_h_
  3.  
  4. //  Module: CHNNLDEF.H
  5.  
  6. class WindData {
  7. public:
  8. virtual void ReceiveWindData (int iSpeed, int iDirection)=0;
  9. };
  10.  
  11. class AirData {
  12. public:
  13. virtual void ReceiveAirData (int iTemperature,
  14.          int iBarometricPressure,
  15.          int iHumdity)=0;
  16. };
  17.  
  18. class TornadoWarning {
  19. public:
  20. virtual void ReceiveTornadoWarning (void)=0;
  21. };
  22.  
  23. #endif
  24.