X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientaliasmanager.cpp;fp=src%2Fclient%2Fclientaliasmanager.cpp;h=e8fc36124a6f50d124af1d8630eaddfc34200608;hp=0000000000000000000000000000000000000000;hb=7a44d67d565fe4f627e64b158a91a5978591c743;hpb=c6c580709fe2492614c01c4b37c3cadcc5e24363 diff --git a/src/client/clientaliasmanager.cpp b/src/client/clientaliasmanager.cpp new file mode 100644 index 00000000..e8fc3612 --- /dev/null +++ b/src/client/clientaliasmanager.cpp @@ -0,0 +1,33 @@ +/*************************************************************************** + * Copyright (C) 2005-09 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + ***************************************************************************/ + +#include "clientaliasmanager.h" + +#include "client.h" + +ClientAliasManager::ClientAliasManager(QObject *parent) + : AliasManager(parent) +{ + +} + +const Network *ClientAliasManager::network(NetworkId id) const { + return Client::network(id); +}