Revision: | 134 |
Committed: | Fri Oct 11 15:09:09 2002 UTC (22 years, 6 months ago) by chuckv |
File size: | 350 byte(s) |
Log Message: | *** empty log message *** |
# | Content |
---|---|
1 | #include "Globals.hpp" |
2 | #include "Component.hpp" |
3 | #include "MakeStamps.hpp" |
4 | |
5 | |
6 | class bassDiag |
7 | { |
8 | public: |
9 | bassDiag(Globals* theGlobals,MakeStamps* theStamps) { |
10 | globals=theGlobals; |
11 | stamps=theStamps; |
12 | } |
13 | ~bassDiag(void){} |
14 | |
15 | void dumpStamps(void); |
16 | |
17 | |
18 | private: |
19 | void dumpFormater(char* theString); |
20 | |
21 | Globals* globals; |
22 | MakeStamps* stamps; |
23 | |
24 | }; |