forked from CEN-RA/Plugin_QGIS
36 lines
1.5 KiB
Python
36 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
/***************************************************************************
|
|
Copie
|
|
A QGIS plugin
|
|
Permet la copie d'une table dans une base PostGis
|
|
-------------------
|
|
begin : 2015-04-13
|
|
copyright : (C) 2015 by Guillaume COSTES - CEN Rhône-Alpes
|
|
email : guillaume.costes@espaces-naturels.fr
|
|
git sha : $Format:%H$
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
This script initializes the plugin, making it known to QGIS.
|
|
"""
|
|
|
|
|
|
# noinspection PyPep8Naming
|
|
def classFactory(iface): # pylint: disable=invalid-name
|
|
"""Load Copie class from file Copie.
|
|
|
|
:param iface: A QGIS interface instance.
|
|
:type iface: QgsInterface
|
|
"""
|
|
#
|
|
from .copie import Copie
|
|
return Copie(iface)
|