1 #ifndef QG_ACTIVELAYERNAME_H
2 #define QG_ACTIVELAYERNAME_H
3 
4 #include "ui_qg_activelayername.h"
5 
6 
7 class QG_ActiveLayerName : public QWidget, public Ui::QG_ActiveLayerName
8 {
9     Q_OBJECT
10 public:
11     explicit QG_ActiveLayerName(QWidget *parent = 0);
12     void activeLayerChanged(const QString& name);
13 
14 };
15 
16 #endif // QG_ACTIVELAYERNAME_H
17