1 #ifndef TEMPERATURE_GRAPHER_H
2 #define TEMPERATURE_GRAPHER_H
4 #include "Thermometer.h"
5 #include "Temperature_Grapher_Options.h"
6 #include "Naming_Context.h"
8 class Temperature_Grapher
11 Temperature_Grapher( Temperature_Grapher_Options
& opt
,
12 Naming_Context
& naming_context
)
13 : opt_(opt
), naming_context_(naming_context
)
23 Thermometer
* thermometer_
;
24 Temperature_Grapher_Options
& opt_
;
25 Naming_Context
& naming_context_
;
28 #endif /* TEMPERATURE_GRAPHER_H */