/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * gsf-outfile.c : * * Copyright (C) 2002-2006 Jody Goldberg (jody@gnome.org) * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2.1 of the GNU Lesser General Public * License as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 * USA */ #include #include #include #define GET_CLASS(instance) G_TYPE_INSTANCE_GET_CLASS (instance, GSF_OUTFILE_TYPE, GsfOutfileClass) /** * gsf_outfile_new_child : * @outfile : A #GsfOutfile * @name : The name of the new child to create * @is_dir : %TRUE to create a directory, %FALSE to create a plain file * * Returns: a newly created child **/ GsfOutput * gsf_outfile_new_child (GsfOutfile *outfile, char const *name, gboolean is_dir) { return gsf_outfile_new_child_full (outfile, name, is_dir, NULL); } /** * gsf_outfile_new_child_full : * @outfile : A #GsfOutfile * @name : The name of the new child to create * @is_dir : TRUE to create a directory, FALSE to create a plain file * @first_property_name : * @Varargs : * * Returns: a newly created child **/ GsfOutput * gsf_outfile_new_child_full (GsfOutfile *outfile, char const *name, gboolean is_dir, char const *first_property_name, ...) { GsfOutput *res; va_list args; g_return_val_if_fail (outfile != NULL, NULL); va_start (args, first_property_name); res = gsf_outfile_new_child_varg (outfile, name, is_dir, first_property_name, args); va_end (args); return res; } GsfOutput * gsf_outfile_new_child_varg (GsfOutfile *outfile, char const *name, gboolean is_dir, char const *first_property_name, va_list args) { g_return_val_if_fail (outfile != NULL, NULL); return GET_CLASS (outfile)->new_child (outfile, name, is_dir, first_property_name, args); } GSF_CLASS_ABSTRACT (GsfOutfile, gsf_outfile, NULL, NULL, GSF_OUTPUT_TYPE)