1 // 2 // Copyright (c) 1994, 1995 by Mike Romberg ( romberg@fsl.noaa.gov ) 3 // 4 // This file may be distributed under terms of the GPL 5 // 6 7 #ifndef _SWAPMETER_H_ 8 #define _SWAPMETER_H_ 9 10 #include "fieldmeterdecay.h" 11 12 class SwapMeter : public FieldMeterDecay { 13 public: 14 SwapMeter( XOSView *parent ); 15 ~SwapMeter( void ); 16 17 const char *name( void ) const { return "SwapMeter"; } 18 void checkevent( void ); 19 void checkResources(void); 20 21 protected: 22 23 void getswapinfo( void ); 24 private: 25 }; 26 27 28 #endif