v_net_visibility.py 1.2 KB

123456789101112131415161718192021222324252627
  1. """
  2. ***************************************************************************
  3. v_net_visibility.py
  4. ---------------------
  5. Date : December 2015
  6. Copyright : (C) 2015 by Médéric Ribreux
  7. Email : medspx at medspx dot fr
  8. ***************************************************************************
  9. * *
  10. * This program is free software; you can redistribute it and/or modify *
  11. * it under the terms of the GNU General Public License as published by *
  12. * the Free Software Foundation; either version 2 of the License, or *
  13. * (at your option) any later version. *
  14. * *
  15. ***************************************************************************
  16. """
  17. __author__ = 'Médéric Ribreux'
  18. __date__ = 'December 2015'
  19. __copyright__ = '(C) 2015, Médéric Ribreux'
  20. from .v_net import variableOutput
  21. def processOutputs(alg, parameters, context, feedback):
  22. outputParameter = {'output': ['output', 'line', 1, True]}
  23. variableOutput(alg, outputParameter, parameters, context)