Added byline
[anjuta.git] / plugins / am-project / am-writer.h
blob08721036e0e4b5d7a507c7f591c45e39e6e03251
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4; coding: utf-8 -*- */
2 /* am-writer.h
4 * Copyright (C) 2009 Sébastien Granjoux
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * This program 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 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 * Boston, MA 02110-1301, USA.
22 #ifndef _AM_WRITER_H_
23 #define _AM_WRITER_H_
25 #include "am-project.h"
27 #include <glib.h>
28 #include <gio/gio.h>
30 G_BEGIN_DECLS
32 gboolean amp_project_update_am_property (AmpProject *project, AnjutaProjectNode *node, AnjutaProjectProperty *property);
34 gboolean amp_group_node_create_token (AmpProject *project, AmpGroupNode *group, GError **error);
35 gboolean amp_group_node_delete_token (AmpProject *project, AmpGroupNode *group, GError **error);
37 gboolean amp_target_node_create_token (AmpProject *project, AmpTargetNode *target, GError **error);
38 gboolean amp_target_node_delete_token (AmpProject *project, AmpTargetNode *target, GList *tokens, GError **error);
40 gboolean amp_source_node_create_token (AmpProject *project, AmpSourceNode *source, GError **error);
41 gboolean amp_source_node_delete_token (AmpProject *project, AmpSourceNode *source, GError **error);
43 G_END_DECLS
45 #endif /* _AM_WRITER_H_ */