X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=gui%2Fchannelwidget.h;fp=gui%2Fchannelwidget.h;h=3d36cf85b9bd3eb1931aa80393d679a0d4cef01f;hp=0000000000000000000000000000000000000000;hb=925b072e5c7bc38949995902cf7af6e4644c2c55;hpb=467fe2d960da9425d25a2a2bef5468376c8e5510 diff --git a/gui/channelwidget.h b/gui/channelwidget.h new file mode 100644 index 00000000..3d36cf85 --- /dev/null +++ b/gui/channelwidget.h @@ -0,0 +1,37 @@ +/*************************************************************************** + * Copyright (C) 2005 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 _CHANNELWIDGET_H_ +#define _CHANNELWIDGET_H_ + +#include "ui_channelwidget.h" + +class ChannelWidget : public QWidget { + Q_OBJECT + + public: + ChannelWidget(QWidget *parent = 0); + + private: + Ui::ChannelWidget ui; +}; + + +#endif