mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-15 00:04:00 -04:00
18 lines
318 B
C++
18 lines
318 B
C++
#ifndef QGISIFACE_H
|
|
#define QGISIFACE_H
|
|
#include "qgisinterface.h"
|
|
class QgisIface : public QgisInterface{
|
|
public:
|
|
QgisIface(QgisApp *qgis=0, const char *name=0);
|
|
~QgisIface();
|
|
void zoomFull();
|
|
void zoomPrevious();
|
|
void zoomActiveLayer();
|
|
int getInt();
|
|
private:
|
|
QgisApp *qgis;
|
|
};
|
|
|
|
|
|
#endif //#define QGISIFACE_H
|