"Fossies" - the Fresh Open Source Software Archive 
Member "xosview-1.23/bsd/MeterMaker.h" (11 Jul 2020, 788 Bytes) of package /linux/misc/xosview-1.23.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
For more information about "MeterMaker.h" see the
Fossies "Dox" file reference documentation.
1 //
2 // Copyright (c) 1994, 1995 by Mike Romberg ( romberg@fsl.noaa.gov )
3 // Copyright (c) 1995, 1996, 1997-2002 by Brian Grayson (bgrayson@netbsd.org)
4 //
5 // This file was written by Brian Grayson for the NetBSD and xosview
6 // projects.
7 // This file may be distributed under terms of the GPL or of the BSD
8 // license, whichever you choose. The full license notices are
9 // contained in the files COPYING.GPL and COPYING.BSD, which you
10 // should have received. If not, contact one of the xosview
11 // authors for a copy.
12 //
13
14 #ifndef _MeterMaker_h
15 #define _MeterMaker_h
16
17 #include "pllist.h"
18 #include "meter.h"
19 #include "xosview.h"
20
21
22 class MeterMaker : public PLList<Meter *> {
23 public:
24 MeterMaker(XOSView *xos);
25 void makeMeters(void);
26
27 private:
28 XOSView *_xos;
29 };
30
31
32 #endif