summaryrefslogtreecommitdiff
path: root/examples/APG/Naming/Temperature_Grapher.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Naming/Temperature_Grapher.h')
-rw-r--r--examples/APG/Naming/Temperature_Grapher.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/examples/APG/Naming/Temperature_Grapher.h b/examples/APG/Naming/Temperature_Grapher.h
deleted file mode 100644
index 610dac6a578..00000000000
--- a/examples/APG/Naming/Temperature_Grapher.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// $Id$
-
-#ifndef TEMPERATURE_GRAPHER_H
-#define TEMPERATURE_GRAPHER_H
-
-#include "Thermometer.h"
-#include "Temperature_Grapher_Options.h"
-#include "Naming_Context.h"
-
-class Temperature_Grapher
- {
- public:
- Temperature_Grapher( Temperature_Grapher_Options & opt,
- Naming_Context & naming_context )
- : opt_(opt), naming_context_(naming_context)
- {
- }
-
- void monitor();
-
- protected:
- void update_graph();
-
- private:
- Thermometer * thermometer_;
- Temperature_Grapher_Options & opt_;
- Naming_Context & naming_context_;
- };
-
-#endif /* TEMPERATURE_GRAPHER_H */