__init__.py 1.2 KB

1234567891011121314151617181920212223242526272829
  1. ###############################################################################
  2. #
  3. # Copyright (C) 2010 NextGIS (http://nextgis.org),
  4. # Alexander Bruy (alexander.bruy@gmail.com),
  5. # Maxim Dubinin (sim@gis-lab.info),
  6. #
  7. # Copyright (C) 2014 Tom Kralidis (tomkralidis@gmail.com)
  8. #
  9. # This source is free software; you can redistribute it and/or modify it under
  10. # the terms of the GNU General Public License as published by the Free
  11. # Software Foundation; either version 2 of the License, or (at your option)
  12. # any later version.
  13. #
  14. # This code is distributed in the hope that it will be useful, but WITHOUT ANY
  15. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  16. # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  17. # details.
  18. #
  19. # You should have received a copy of the GNU General Public License along
  20. # with this program; if not, write to the Free Software Foundation, Inc.,
  21. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  22. #
  23. ###############################################################################
  24. def classFactory(iface):
  25. """invoke plugin"""
  26. from MetaSearch.plugin import MetaSearchPlugin
  27. return MetaSearchPlugin(iface)