__init__.py 1.3 KB

123456789101112131415161718192021222324252627282930
  1. # -*- coding: utf-8 -*-
  2. """
  3. /***************************************************************************
  4. DigitizingTools
  5. A QGIS plugin
  6. Subsumes different tools useful during digitizing sessions
  7. -------------------
  8. begin : 2013-02-25
  9. copyright : (C) 2013 by Bernhard Ströbl
  10. email : bernhard.stroebl@jena.de
  11. ***************************************************************************/
  12. /***************************************************************************
  13. * *
  14. * This program is free software; you can redistribute it and/or modify *
  15. * it under the terms of the GNU General Public License as published by *
  16. * the Free Software Foundation; either version 2 of the License, or *
  17. * (at your option) any later version. *
  18. * *
  19. ***************************************************************************/
  20. This script initializes the plugin, making it known to QGIS.
  21. """
  22. from __future__ import absolute_import
  23. def classFactory(iface):
  24. # load RectOvalDigit class from file RectOvalDigit
  25. from .digitizingtools import DigitizingTools
  26. return DigitizingTools(iface)