1 /* This file is part of GEGL 2 * 3 * GEGL is free software; you can redistribute it and/or 4 * modify it under the terms of the GNU Lesser General Public 5 * License as published by the Free Software Foundation; either 6 * version 3 of the License, or (at your option) any later version. 7 * 8 * GEGL is distributed in the hope that it will be useful, 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 * Lesser General Public License for more details. 12 * 13 * You should have received a copy of the GNU Lesser General Public 14 * License along with GEGL; if not, see <https://www.gnu.org/licenses/>. 15 * 16 * Copyright 2006 Øyvind Kolås <pippin@gimp.org> 17 */ 18 19 #ifndef __GEGL_OPERATION_HANDLERS_H__ 20 #define __GEGL_OPERATION_HANDLERS_H__ 21 22 gboolean gegl_operation_handlers_register_loader (const gchar *content_type, 23 const gchar *handler); 24 25 gboolean gegl_operation_handlers_register_saver (const gchar *content_type, 26 const gchar *handler); 27 28 const gchar * gegl_operation_handlers_get_loader (const gchar *content_type); 29 30 const gchar * gegl_operation_handlers_get_saver (const gchar *content_type); 31 32 #endif 33