Skip to content
Snippets Groups Projects
Commit 8ecd1aa6 authored by Ruud Overeem's avatar Ruud Overeem
Browse files

BugID: 826

parent 50d3d985
No related branches found
No related tags found
No related merge requests found
...@@ -92,15 +92,15 @@ public: ...@@ -92,15 +92,15 @@ public:
inline bool isAsync() const inline bool isAsync() const
{ return (true); } { return (true); }
inline string ACAsyncClient::supplyInfo(const string& keyList) const inline string supplyInfo(const string& keyList) const
{ return (itsClientFuncts->supplyInfoFunc(keyList)); } { return (itsClientFuncts->supplyInfoFunc(keyList)); }
inline void ACAsyncClient::handleAckMessage(ACCmd cmd, inline void handleAckMessage(ACCmd cmd,
uint16 result, uint16 result,
const string& info) const const string& info) const
{ itsClientFuncts->handleAckMsg(cmd, result, info); } { itsClientFuncts->handleAckMsg(cmd, result, info); }
inline void ACAsyncClient::handleAnswerMessage(const string& answer) const inline void handleAnswerMessage(const string& answer) const
{ itsClientFuncts->handleAnswerMsg(answer); } { itsClientFuncts->handleAnswerMsg(answer); }
bool processACmsgFromServer() const; bool processACmsgFromServer() const;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment