mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-12 00:02:25 -04:00
16 lines
280 B
Plaintext
16 lines
280 B
Plaintext
/** \ingroup gui
|
|
* \note added in 2.1
|
|
*/
|
|
class QgsVectorLayerPropertiesPage : QWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsvectorlayerpropertiespage.h>
|
|
%End
|
|
|
|
public:
|
|
explicit QgsVectorLayerPropertiesPage( QWidget *parent = 0 );
|
|
|
|
public slots:
|
|
virtual void apply() = 0;
|
|
};
|