From 0f91e9a06aa0f68a2cbe3c9fc4a858c0a5e6744a Mon Sep 17 00:00:00 2001 From: Denys Vlasenko Date: Tue, 15 Sep 2009 12:43:01 +0200 Subject: unify CommLayer, MiddleWare and Utils into Utils Signed-off-by: Denys Vlasenko --- lib/Utils/CommLayerInner.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lib/Utils/CommLayerInner.h (limited to 'lib/Utils/CommLayerInner.h') diff --git a/lib/Utils/CommLayerInner.h b/lib/Utils/CommLayerInner.h new file mode 100644 index 00000000..d161cfc7 --- /dev/null +++ b/lib/Utils/CommLayerInner.h @@ -0,0 +1,23 @@ +#ifndef COMMLAYERINNER_H_ +#define COMMLAYERINNER_H_ + +#include "Observer.h" + +void init_daemon_logging(CObserver *pObs); + +/* + * Set client's name (dbus ID). NULL unsets it. + */ +void set_client_name(const char* name); +/* Ask a client to warn the user about a non-fatal, but unexpected condition. + * In GUI, it will usually be presented as a popup message. + */ +void warn_client(const std::string& pMessage); +/* Logs a message to a client. + * In UI, it will usually appear as a new status line message in GUI, + * or as a new message line in CLI. + */ +void update_client(const std::string& pMessage); + +#endif /* COMMLAYERINNER_H_ */ + -- cgit