diff options
Diffstat (limited to 'ksquirrel/ksquirrelpart/sq_bcglabel.h')
-rw-r--r-- | ksquirrel/ksquirrelpart/sq_bcglabel.h | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/ksquirrel/ksquirrelpart/sq_bcglabel.h b/ksquirrel/ksquirrelpart/sq_bcglabel.h new file mode 100644 index 0000000..dd86bc7 --- /dev/null +++ b/ksquirrel/ksquirrelpart/sq_bcglabel.h @@ -0,0 +1,34 @@ +/*************************************************************************** + sq_bcglabel.h - description + ------------------- + begin : ??? May 4 2005 + copyright : (C) 2005 by Baryshev Dmitry + email : ksquirrel.iv@gmail.com + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + +#ifndef SQ_BCGLABEL_H +#define SQ_BCGLABEL_H + +#include <qlabel.h> + +/** + *@author Baryshev Dmitry + */ + +class SQ_BCGLabel : public QLabel +{ + public: + SQ_BCGLabel(QWidget *parent, const char *name = 0, WFlags f = 0); + ~SQ_BCGLabel(); +}; + +#endif |