Blame src/builder-source-script.h

rpm-build c487f7
/*
rpm-build c487f7
 * Copyright © 2015 Red Hat, Inc
rpm-build c487f7
 *
rpm-build c487f7
 * This program is free software; you can redistribute it and/or
rpm-build c487f7
 * modify it under the terms of the GNU Lesser General Public
rpm-build c487f7
 * License as published by the Free Software Foundation; either
rpm-build c487f7
 * version 2.1 of the License, or (at your option) any later version.
rpm-build c487f7
 *
rpm-build c487f7
 * This library is distributed in the hope that it will be useful,
rpm-build c487f7
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
rpm-build c487f7
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
rpm-build c487f7
 * Lesser General Public License for more details.
rpm-build c487f7
 *
rpm-build c487f7
 * You should have received a copy of the GNU Lesser General Public
rpm-build c487f7
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
rpm-build c487f7
 *
rpm-build c487f7
 * Authors:
rpm-build c487f7
 *       Alexander Larsson <alexl@redhat.com>
rpm-build c487f7
 */
rpm-build c487f7
rpm-build c487f7
#ifndef __BUILDER_SOURCE_SCRIPT_H__
rpm-build c487f7
#define __BUILDER_SOURCE_SCRIPT_H__
rpm-build c487f7
rpm-build c487f7
#include "builder-source.h"
rpm-build c487f7
rpm-build c487f7
G_BEGIN_DECLS
rpm-build c487f7
rpm-build c487f7
typedef struct BuilderSourceScript BuilderSourceScript;
rpm-build c487f7
rpm-build c487f7
#define BUILDER_TYPE_SOURCE_SCRIPT (builder_source_script_get_type ())
rpm-build c487f7
#define BUILDER_SOURCE_SCRIPT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), BUILDER_TYPE_SOURCE_SCRIPT, BuilderSourceScript))
rpm-build c487f7
#define BUILDER_IS_SOURCE_SCRIPT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BUILDER_TYPE_SOURCE_SCRIPT))
rpm-build c487f7
rpm-build c487f7
GType builder_source_script_get_type (void);
rpm-build c487f7
rpm-build c487f7
G_DEFINE_AUTOPTR_CLEANUP_FUNC (BuilderSourceScript, g_object_unref)
rpm-build c487f7
rpm-build c487f7
G_END_DECLS
rpm-build c487f7
rpm-build c487f7
#endif /* __BUILDER_SOURCE_SCRIPT_H__ */