Merge pull request #752 from jpnurmi/findclients

Replace CIRCNetwork::FindClient() with FindClients()
This commit is contained in:
Alexey Sokolov
2014-11-19 21:42:53 +00:00
2 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -76,7 +76,7 @@ public:
const CString& GetName() const;
bool IsNetworkAttached() const { return !m_vClients.empty(); }
const std::vector<CClient*>& GetClients() const { return m_vClients; }
CClient* FindClient(const CString& sIdentifier) const;
std::vector<CClient*> FindClients(const CString& sIdentifier) const;
void SetUser(CUser *pUser);
bool SetName(const CString& sName);