1 /*
2  * Copyright (C) 2005 - 2011 Vivien Malerba <malerba@gnome-db.org>
3  * Copyright (C) 2006 - 2007 Murray Cumming <murrayc@murrayc-desktop>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
18  * Boston, MA  02110-1301, USA.
19  */
20 
21 #ifndef __GDA_DATA_MODEL_PRIVATE_H__
22 #define __GDA_DATA_MODEL_PRIVATE_H__
23 
24 #include <glib-object.h>
25 #include <libxml/parser.h>
26 #include <libxml/tree.h>
27 #include <libgda/gda-decl.h>
28 #include <libgda/gda-column.h>
29 #include <libgda/gda-value.h>
30 #include <libgda/gda-data-model-extra.h>
31 
32 G_BEGIN_DECLS
33 
34 gboolean                      gda_data_model_add_data_from_xml_node (GdaDataModel *model, xmlNodePtr node, GError **error);
35 
36 G_END_DECLS
37 
38 #endif
39