mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-12 14:20:48 +01:00
13 lines
212 B
C
13 lines
212 B
C
|
#ifndef PROJECTIONCOMBOBOX_H
|
||
|
#define PROJECTIONCOMBOBOX_H
|
||
|
|
||
|
#include <QComboBox>
|
||
|
|
||
|
class ProjectionComboBox : public QComboBox
|
||
|
{
|
||
|
public:
|
||
|
ProjectionComboBox(QWidget *parent = 0);
|
||
|
};
|
||
|
|
||
|
#endif // PROJECTIONCOMBOBOX_H
|