| Revision: | 134 |
| Committed: | Fri Oct 11 15:09:09 2002 UTC (23 years ago) by chuckv |
| File size: | 350 byte(s) |
| Log Message: | *** empty log message *** |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | chuckv | 127 | #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 | chuckv | 134 | ~bassDiag(void){} |
| 14 | chuckv | 127 | |
| 15 | void dumpStamps(void); | ||
| 16 | |||
| 17 | |||
| 18 | private: | ||
| 19 | void dumpFormater(char* theString); | ||
| 20 | |||
| 21 | Globals* globals; | ||
| 22 | MakeStamps* stamps; | ||
| 23 | |||
| 24 | }; |