/*************************************************************************** phtread.h - description ------------------- begin : Sun Jun 6 2004 copyright : (C) 2004 by Harald Krippel email : harald@hte-develop.net ***************************************************************************/ /*************************************************************************** * * * 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 PHTHREAD_H #define PHTHREAD_H /** @author Harald Krippel */ #include class Glcontrol; class phThread : public QThread { public: virtual void run( ); Glcontrol *gl; int go; }; #endif // PHTHREAD_H