Change-Id: If49557efacb439d5d33f284ec19a754a1c010d68
Signed-off-by: Mu-Woong Lee <muwoong.lee@samsung.com>
GDBusNodeInfo* __nodeInfo;
guint __registrationId;
- struct ClientInfo {
+ struct __ClientInfo {
ClientBase* client;
unsigned int watchId;
};
- std::map<std::string, ClientInfo> __clients;
+ std::map<std::string, __ClientInfo> __clients;
};
}
return NULL;
}
- ClientInfo info = {client, __watch(busName, client)};
+ __ClientInfo info = {client, __watch(busName, client)};
__clients[busName] = info;
return client;
auto iter = __clients.find(busName);
IF_FAIL_VOID(iter != __clients.end());
- ClientInfo info = iter->second;
+ __ClientInfo info = iter->second;
__clients.erase(iter);
__unwatch(info.watchId);