cosmetix
[dyskinesia.git] / src / pktwin.h
blob6cb70f6e55c9f44aef7fceaf6a29fc33fe1e286c
1 /* coded by Ketmar // Vampire Avalon (psyc://ketmar.no-ip.org/~Ketmar)
2 * Understanding is not required. Only obedience.
4 * This program is free software. It comes without any warranty, to
5 * the extent permitted by applicable law. You can redistribute it
6 * and/or modify it under the terms of the Do What The Fuck You Want
7 * To Public License, Version 2, as published by Sam Hocevar. See
8 * http://sam.zoy.org/wtfpl/COPYING for more details.
9 */
10 #ifndef PKTWIN_H
11 #define PKTWIN_H
13 #include <QDialog>
15 class PsycPacket;
18 #include "ui_pktform.h"
19 class PktForm : public QDialog, public Ui_pktForm {
20 Q_OBJECT
22 public:
23 PktForm (QWidget *parent = 0);
24 ~PktForm ();
26 signals:
27 void send ();
31 #endif