QGIS/qgis/plugins/qgsworkerclass.h
gsherman 8200966fcf no message
git-svn-id: http://svn.osgeo.org/qgis/trunk@202 c8812cc2-4d05-0410-92ff-de0c093fc19c
2003-03-09 15:49:14 +00:00

23 lines
262 B
C++

#ifndef QGSWORKERCLASS_H
#define QGSWORKERCLASS_H
#include <qobject.h>
/**
*
* Gary Sherman
**/
class QgsWorkerClass : public QObject
{
Q_OBJECT
public:
QgsWorkerClass();
~QgsWorkerClass();
public slots:
void open();
void newThing();
};
#endif