1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
//
// Copyright (c) 1994, 1995, 2006 by Mike Romberg ( mike.romberg@noaa.gov )
//
// This file may be distributed under terms of the GPL
//
#ifndef _MEMMETER_H_
#define _MEMMETER_H_
#include "fieldmetergraph.h"
#include "xosview.h"
#include <string.h>
class MemMeter : public FieldMeterGraph {
public:
MemMeter( XOSView *parent );
const char *name( void ) const { return "MemMeter"; }
void checkevent( void );
void checkResources( void );
private:
void getstats( void );
};
#endif
|