instantmucroom.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef INSTANTMUCROOM_H__
00016 #define INSTANTMUCROOM_H__
00017
00018 #include "mucroom.h"
00019
00020 namespace gloox
00021 {
00022
00030 class GLOOX_API InstantMUCRoom : public MUCRoom
00031 {
00032 public:
00044 InstantMUCRoom( ClientBase* parent, const JID& nick, MUCRoomHandler* mrh );
00045
00049 virtual ~InstantMUCRoom();
00050
00051 protected:
00052
00053
00054 virtual bool instantRoomHook() const { return true; }
00055
00056 };
00057
00058 }
00059
00060 #endif // INSTANTMUCROOM_H__