no message

git-svn-id: http://svn.osgeo.org/qgis/trunk@202 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
gsherman 2003-03-09 15:49:14 +00:00
parent 917c05f525
commit 7b77ca7306
2 changed files with 40 additions and 0 deletions

View 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
View 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