/* * Copyright (c) 2012 Mateusz Piękos * Licensed under the simplified BSD license. * See Documentation/Licenses/BSD-simplified.txt for more information. */ #pragma once #include "Swiften/JID/JID.h" namespace Swift { class WhiteboardWindow; class StanzaChannel; class WhiteboardWindowFactory { public : virtual ~WhiteboardWindowFactory() {}; virtual WhiteboardWindow* createWhiteboardWindow(StanzaChannel* stanzaChannel, const JID& jid) = 0; }; }