mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-18 00:03:05 -04:00
no message
git-svn-id: http://svn.osgeo.org/qgis/trunk@202 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
parent
917c05f525
commit
7b77ca7306
18
plugins/qgsworkerclass.cpp
Normal file
18
plugins/qgsworkerclass.cpp
Normal file
@ -0,0 +1,18 @@
|
||||
// $FILENAME
|
||||
#include "qgsworkerclass.h"
|
||||
#include <qmessagebox.h>
|
||||
|
||||
QgsWorkerClass::QgsWorkerClass()
|
||||
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
QgsWorkerClass::~QgsWorkerClass()
|
||||
{
|
||||
}
|
||||
void QgsWorkerClass::open(){
|
||||
QMessageBox::information(this, "Worker class", "Message from open function in worker class");
|
||||
}
|
||||
void QgsWorkerClass::newThing(){
|
||||
}
|
22
plugins/qgsworkerclass.h
Normal file
22
plugins/qgsworkerclass.h
Normal file
@ -0,0 +1,22 @@
|
||||
|
||||
#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
|
Loading…
x
Reference in New Issue
Block a user