This repository has been archived on 2020-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
Files
YASMIN/map/MapView.h
2016-07-15 15:21:44 +02:00

27 lines
278 B
C++

#ifndef MAPVIEW_H
#define MAPVIEW_H
#include <QGLWidget>
class MapView : public QGLWidget {
public:
MapView(QWidget* parent = 0);
protected:
void initializeGL();
void paintGL();
void resizeGL(int width, int height);
private:
void draw();
};
#endif // MAPVIEW_H