summaryrefslogtreecommitdiff
path: root/DAnCE/tools/System_Health/Interceptors/SHS_Transport.h
diff options
context:
space:
mode:
Diffstat (limited to 'DAnCE/tools/System_Health/Interceptors/SHS_Transport.h')
-rw-r--r--DAnCE/tools/System_Health/Interceptors/SHS_Transport.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/DAnCE/tools/System_Health/Interceptors/SHS_Transport.h b/DAnCE/tools/System_Health/Interceptors/SHS_Transport.h
deleted file mode 100644
index 0afe322defa..00000000000
--- a/DAnCE/tools/System_Health/Interceptors/SHS_Transport.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/**
- * @file SHS_Transport.h
- * @author William R. Otte <wotte@dre.vanderbilt.edu>
- *
- * Abstraction for selecting the transport that SHS updates go over.
- */
-
-#ifndef SHS_TRANSPORT_H
-#define SHS_TRANSPORT_H
-
-#include /**/ "ace/pre.h"
-
-#include "dance/Deployment/Deployment_DeploymentPlanC.h"
-#include "System_Health/SHS_DataModelC.h"
-
-namespace DAnCE
-{
- namespace SHS
- {
- class SHS_Transport
- {
- public:
- virtual ~SHS_Transport (void) {}
-
- virtual void configure (const Deployment::Properties &) = 0;
-
- virtual void push_event (const Status_Update &update) = 0;
- };
- }
-}
-
-#include /**/ "ace/post.h"
-
-#endif