QGIS/qgis/plugins/qgsworkerclass.h

23 lines
262 B
C
Raw Normal View History

#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