// // Copyright (c) 1994, 1995 by Mike Romberg ( romberg@fsl.noaa.gov ) // // This file may be distributed under terms of the GPL // #ifndef _SWAPMETER_H_ #define _SWAPMETER_H_ #include "fieldmeterdecay.h" class SwapMeter : public FieldMeterDecay { public: SwapMeter( XOSView *parent ); ~SwapMeter( void ); const char *name( void ) const { return "SwapMeter"; } void checkevent( void ); void checkResources(void); protected: void getswapinfo( void ); private: }; #endif