__init__.py 499 B

123456789101112131415
  1. # -*- coding: utf-8 -*-
  2. """
  3. /***************************************************************************
  4. FilePath
  5. A QGIS plugin
  6. This plugin copies the file path of the selected layer
  7. ***************************************************************************/
  8. This script initializes the plugin, making it known to QGIS.
  9. """
  10. def classFactory(iface):
  11. # load FilePath class from file FilePath.py
  12. from .FilePath import FilePath
  13. return FilePath(iface)