mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
13 lines
364 B
Plaintext
13 lines
364 B
Plaintext
/**
|
|
* Utils class for QgsVirtualLayerDefinition
|
|
*/
|
|
class QgsVirtualLayerDefinitionUtils
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsvirtuallayerdefinitionutils.h>
|
|
%End
|
|
public:
|
|
//! Get a virtual layer definition from a vector layer where vector joins are replaced by SQL LEFT JOINs
|
|
static QgsVirtualLayerDefinition fromJoinedLayer( QgsVectorLayer* joinedLayer );
|
|
};
|