ufo-edf-3d-writer-task.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. * Copyright (C) 2011-2013 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_EDF_3D_edf_3d_writer_TASK_H
  20. #define __UFO_EDF_3D_edf_3d_writer_TASK_H
  21. #include <ufo/ufo.h>
  22. G_BEGIN_DECLS
  23. #define UFO_TYPE_EDF_3D_WRITER_TASK (ufo_edf_3d_writer_task_get_type())
  24. #define UFO_EDF_3D_WRITER_TASK(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), UFO_TYPE_EDF_3D_WRITER_TASK, UfoEdf3dWriterTask))
  25. #define UFO_IS_EDF_3D_WRITER_TASK(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), UFO_TYPE_EDF_3D_WRITER_TASK))
  26. #define UFO_EDF_3D_WRITER_TASK_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), UFO_TYPE_EDF_3D_WRITER_TASK, UfoEdf3dWriterTaskClass))
  27. #define UFO_IS_EDF_3D_WRITER_TASK_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), UFO_TYPE_EDF_3D_edf_3d_writer_TASK))
  28. #define UFO_EDF_3D_WRITER_TASK_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), UFO_TYPE_EDF_3D_WRITER_TASK, UfoEdf3dWriterTaskClass))
  29. typedef struct _UfoEdf3dWriterTask UfoEdf3dWriterTask;
  30. typedef struct _UfoEdf3dWriterTaskClass UfoEdf3dWriterTaskClass;
  31. typedef struct _UfoEdf3dWriterTaskPrivate UfoEdf3dWriterTaskPrivate;
  32. /**
  33. * UfoEdf3dWriterTask:
  34. *
  35. * Main object for organizing filters. The contents of the #UfoEdf3dWriterTask structure
  36. * are private and should only be accessed via the provided API.
  37. */
  38. struct _UfoEdf3dWriterTask {
  39. /*< private >*/
  40. UfoTaskNode parent_instance;
  41. UfoEdf3dWriterTaskPrivate *priv;
  42. };
  43. /**
  44. * UfoEdf3dWriterTaskClass:
  45. *
  46. * #UfoEdf3dWriterTask class
  47. */
  48. struct _UfoEdf3dWriterTaskClass {
  49. /*< private >*/
  50. UfoTaskNodeClass parent_class;
  51. };
  52. UfoNode *ufo_edf_3d_writer_task_new (void);
  53. GType ufo_edf_3d_writer_task_get_type (void);
  54. G_END_DECLS
  55. #endif