mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
23 lines
262 B
C++
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
|