X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtgui%2Ftopicwidget.h;fp=src%2Fqtgui%2Ftopicwidget.h;h=d6c1ab9c850884e03bd5f0f6d47bc144a7087f5b;hp=0000000000000000000000000000000000000000;hb=902c95728306e5ba115de84800fc8d5d239c9d62;hpb=06a46322b6107fe4a38c310a6292cc1ef3330950 diff --git a/src/qtgui/topicwidget.h b/src/qtgui/topicwidget.h new file mode 100644 index 00000000..d6c1ab9c --- /dev/null +++ b/src/qtgui/topicwidget.h @@ -0,0 +1,41 @@ +/*************************************************************************** + * Copyright (C) 2005/06 by The Quassel Team * + * 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) any later version. * + * * + * 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. * + ***************************************************************************/ + +#ifndef _TOPICWIDGET_H_ +#define _TOPICWIDGET_H_ + +#include + +#include "ui_topicwidget.h" + +class TopicWidget : public QWidget { + Q_OBJECT + +public: + TopicWidget(QWidget *parent = 0); + virtual ~TopicWidget(); + + +private: + Ui::TopicWidget ui; +}; + + +#endif