00001 /* 00002 Copyright (c) 2007 by Jakob Schroeter <js@camaya.net> 00003 This file is part of the gloox library. http://camaya.net/gloox 00004 00005 This software is distributed under a license. The full license 00006 agreement can be found in the file LICENSE in this distribution. 00007 This software may not be copied, modified, sold or distributed 00008 other than expressed in the named license agreement. 00009 00010 This software is distributed without any warranty. 00011 */ 00012 00013 00014 00015 #include "instantmucroom.h" 00016 #include "clientbase.h" 00017 #include "jid.h" 00018 00019 namespace gloox 00020 { 00021 00022 InstantMUCRoom::InstantMUCRoom( ClientBase *parent, const JID& nick, MUCRoomHandler *mrh ) 00023 : MUCRoom( parent, nick, mrh, 0 ) 00024 { 00025 } 00026 00027 InstantMUCRoom::~InstantMUCRoom() 00028 { 00029 } 00030 00031 }