summaryrefslogtreecommitdiff
path: root/include/CommonAPI/DBus/DBusClientId.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/CommonAPI/DBus/DBusClientId.hpp')
-rw-r--r--include/CommonAPI/DBus/DBusClientId.hpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/CommonAPI/DBus/DBusClientId.hpp b/include/CommonAPI/DBus/DBusClientId.hpp
index 72dc1c5..02e369f 100644
--- a/include/CommonAPI/DBus/DBusClientId.hpp
+++ b/include/CommonAPI/DBus/DBusClientId.hpp
@@ -25,19 +25,19 @@ class DBusMessage;
* It internally uses a string to identify clients. This string is the unique sender id used by dbus.
*/
class DBusClientId
- : public CommonAPI::ClientId {
+ : public CommonAPI::ClientId {
friend struct std::hash<DBusClientId>;
public:
- COMMONAPI_EXPORT DBusClientId(std::string dbusId);
+ COMMONAPI_EXPORT DBusClientId(std::string dbusId);
- COMMONAPI_EXPORT bool operator==(CommonAPI::ClientId& clientIdToCompare);
- COMMONAPI_EXPORT bool operator==(DBusClientId& clientIdToCompare);
- COMMONAPI_EXPORT size_t hashCode();
+ COMMONAPI_EXPORT bool operator==(CommonAPI::ClientId& clientIdToCompare);
+ COMMONAPI_EXPORT bool operator==(DBusClientId& clientIdToCompare);
+ COMMONAPI_EXPORT size_t hashCode();
- COMMONAPI_EXPORT const char * getDBusId();
+ COMMONAPI_EXPORT const char * getDBusId();
- COMMONAPI_EXPORT DBusMessage createMessage(const std::string objectPath, const std::string interfaceName, const std::string signalName) const;
+ COMMONAPI_EXPORT DBusMessage createMessage(const std::string objectPath, const std::string interfaceName, const std::string signalName) const;
protected:
std::string dbusId_;
};