mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@202 c8812cc2-4d05-0410-92ff-de0c093fc19c
18 lines
305 B
C++
18 lines
305 B
C++
// $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(){
|
|
} |