summaryrefslogtreecommitdiff
path: root/examples/APG/Naming/Temperature_Monitor_Options.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/APG/Naming/Temperature_Monitor_Options.h')
-rw-r--r--examples/APG/Naming/Temperature_Monitor_Options.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/examples/APG/Naming/Temperature_Monitor_Options.h b/examples/APG/Naming/Temperature_Monitor_Options.h
deleted file mode 100644
index 95fb82faa9b..00000000000
--- a/examples/APG/Naming/Temperature_Monitor_Options.h
+++ /dev/null
@@ -1,48 +0,0 @@
-// $Id$
-
-#ifndef TEMPERATURE_MONITOR_OPTIONS_H
-#define TEMPERATURE_MONITOR_OPTIONS_H
-
-class Temperature_Monitor_Options
- {
- public:
- Temperature_Monitor_Options (int, ACE_TCHAR *[])
- { }
-
- const char *thermometer_address (void)
- {
- return "serial:// s0/0x3e52";
- }
-
- int poll_interval (void)
- {
- return 10; // every 10 seconds
- }
-
- int reset_interval (void)
- {
- return 60; // sixty seconds
- }
-
- int excessive_resets (void)
- {
- return 5; // no response in 5 minutes
- }
-
- const char *admin_email (void)
- {
- return "root@localhost";
- }
-
- const char *email_from (void)
- {
- return "temperature monitor";
- }
-
- int history_size()
- {
- return 10;
- }
- };
-
-#endif /* TEMPERATURE_MONITOR_OPTIONS_H */