ufo-remove-stripes-task.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (C) 2011-2014 Karlsruhe Institute of Technology
  3. *
  4. * This file is part of Ufo.
  5. *
  6. * This library is free software: you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation, either
  9. * version 3 of the License, or (at your option) any later version.
  10. *
  11. * This library is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with this library. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef __UFO_REMOVE_STRIPES_TASK_H
  20. #define __UFO_REMOVE_STRIPES_TASK_H
  21. #include <ufo/ufo.h>
  22. G_BEGIN_DECLS
  23. #define UFO_TYPE_REMOVE_STRIPES_TASK (ufo_remove_stripes_task_get_type())
  24. #define UFO_REMOVE_STRIPES_TASK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), UFO_TYPE_REMOVE_STRIPES_TASK, UfoRemoveStripesTask))
  25. #define UFO_IS_REMOVE_STRIPES_TASK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), UFO_TYPE_REMOVE_STRIPES_TASK))
  26. #define UFO_REMOVE_STRIPES_TASK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), UFO_TYPE_REMOVE_STRIPES_TASK, UfoRemoveStripesTaskClass))
  27. #define UFO_IS_REMOVE_STRIPES_TASK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), UFO_TYPE_REMOVE_STRIPES_TASK))
  28. #define UFO_REMOVE_STRIPES_TASK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), UFO_TYPE_REMOVE_STRIPES_TASK, UfoRemoveStripesTaskClass))
  29. typedef struct _UfoRemoveStripesTask UfoRemoveStripesTask;
  30. typedef struct _UfoRemoveStripesTaskClass UfoRemoveStripesTaskClass;
  31. typedef struct _UfoRemoveStripesTaskPrivate UfoRemoveStripesTaskPrivate;
  32. /**
  33. * UfoRemoveStripesTask:
  34. *
  35. * The contents of the #UfoRemoveStripesTask structure
  36. * are private and should only be accessed via the provided API.
  37. */
  38. struct _UfoRemoveStripesTask {
  39. /*< private >*/
  40. UfoTaskNode parent_instance;
  41. UfoRemoveStripesTaskPrivate *priv;
  42. };
  43. /**
  44. * UfoRemoveStripesTaskClass:
  45. *
  46. * #UfoRemoveStripesTask class
  47. */
  48. struct _UfoRemoveStripesTaskClass {
  49. /*< private >*/
  50. UfoTaskNodeClass parent_class;
  51. };
  52. UfoNode *ufo_remove_stripes_task_new (void);
  53. GType ufo_remove_stripes_task_get_type (void);
  54. G_END_DECLS
  55. #endif