Displaying 1 result from an estimated 1 matches for "heartbeatlistener".
2010 May 13
0
[PATCH matahari] Moving QMF functionality into a transport layer.
...de <qpid/agent/ManagementAgent.h>
+#include <string>
 
-#include "qmf/com/redhat/matahari/Host.h"
-
-#include "networkdevice.h"
-#include "processors.h"
-
-using namespace qpid::management;
 using namespace std;
 
-using qpid::management::Manageable;
+/*
+  HeartbeatListener defines a type which receives notification
+  when a heartbeat event occurs.
+ */
+class HeartbeatListener
+{
+ public:
+  virtual void heartbeat() = 0;
+};
 
-class HostAgent : public Manageable
+/*
+  Host represents the public contract for the set of host APIs.
+ */
+class Host
 {
  private:
-...