search for: subscribe_to_heartbeat

Displaying 1 result from an estimated 1 matches for "subscribe_to_heartbeat".

2010 May 13
0
[PATCH matahari] Moving QMF functionality into a transport layer.
...nsigned int get_memory() const; - void setup(ManagementAgent* agent); - void update(void); + void set_beeping(const bool beeping); + bool is_beeping() const; - // agent methods - void shutdown(void); - void reboot(void); + virtual void identify(const int iterations) = 0; + virtual void subscribe_to_heartbeat(const HeartbeatListener& listener) = 0; + virtual void unsubscribe_from_heartbeat(const HeartbeatListener& listener) = 0; + virtual void shutdown() = 0; + virtual void reboot() = 0; }; #endif // __HOST_H diff --git a/src/host_transport.cpp b/src/host_transport.cpp new file mode 10064...