gda-config.h | gda-config.h | |||
---|---|---|---|---|
skipping to change at line 115 | skipping to change at line 115 | |||
gchar *cnc_string; | gchar *cnc_string; | |||
gchar *description; | gchar *description; | |||
gchar *username; | gchar *username; | |||
gchar *password; | gchar *password; | |||
gboolean is_global; | gboolean is_global; | |||
}; | }; | |||
#define GDA_TYPE_DATA_SOURCE_INFO (gda_data_source_info_get_type ()) | #define GDA_TYPE_DATA_SOURCE_INFO (gda_data_source_info_get_type ()) | |||
GType gda_data_source_info_get_type (void); | GType gda_data_source_info_get_type (void); | |||
GdaDataSourceInfo *gda_data_source_info_new (); | ||||
GdaDataSourceInfo *gda_data_source_info_copy (GdaDataSourceInfo *src ); | GdaDataSourceInfo *gda_data_source_info_copy (GdaDataSourceInfo *src ); | |||
gboolean gda_data_source_info_equal (GdaDataSourceInfo *inf o1, GdaDataSourceInfo *info2); | gboolean gda_data_source_info_equal (GdaDataSourceInfo *inf o1, GdaDataSourceInfo *info2); | |||
GdaDataSourceInfo *gda_config_find_data_source (const gchar *name); | GdaDataSourceInfo *gda_config_find_data_source (const gchar *name); | |||
void gda_data_source_info_free (GdaDataSourceInfo *inf o); | void gda_data_source_info_free (GdaDataSourceInfo *inf o); | |||
GList *gda_config_get_data_source_list (void); | GList *gda_config_get_data_source_list (void); | |||
void gda_config_free_data_source_list (GList *list); | void gda_config_free_data_source_list (GList *list); | |||
GdaDataModel *gda_config_get_data_source_model (void); | GdaDataModel *gda_config_get_data_source_model (void); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||
gda-data-access-wrapper.h | gda-data-access-wrapper.h | |||
---|---|---|---|---|
skipping to change at line 43 | skipping to change at line 43 | |||
#define GDA_DATA_ACCESS_WRAPPER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST (k lass, GDA_TYPE_DATA_ACCESS_WRAPPER, GdaDataAccessWrapperClass)) | #define GDA_DATA_ACCESS_WRAPPER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST (k lass, GDA_TYPE_DATA_ACCESS_WRAPPER, GdaDataAccessWrapperClass)) | |||
#define GDA_IS_DATA_ACCESS_WRAPPER(obj) (G_TYPE_CHECK_INSTANCE_TYPE (obj, GDA_TYPE_DATA_ACCESS_WRAPPER)) | #define GDA_IS_DATA_ACCESS_WRAPPER(obj) (G_TYPE_CHECK_INSTANCE_TYPE (obj, GDA_TYPE_DATA_ACCESS_WRAPPER)) | |||
#define GDA_IS_DATA_ACCESS_WRAPPER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((k lass), GDA_TYPE_DATA_ACCESS_WRAPPER)) | #define GDA_IS_DATA_ACCESS_WRAPPER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((k lass), GDA_TYPE_DATA_ACCESS_WRAPPER)) | |||
typedef struct _GdaDataAccessWrapper GdaDataAccessWrapper; | typedef struct _GdaDataAccessWrapper GdaDataAccessWrapper; | |||
typedef struct _GdaDataAccessWrapperClass GdaDataAccessWrapperClass; | typedef struct _GdaDataAccessWrapperClass GdaDataAccessWrapperClass; | |||
typedef struct _GdaDataAccessWrapperPrivate GdaDataAccessWrapperPrivate; | typedef struct _GdaDataAccessWrapperPrivate GdaDataAccessWrapperPrivate; | |||
struct _GdaDataAccessWrapper { | struct _GdaDataAccessWrapper { | |||
GdaObject object; | GdaObject object; | |||
GdaDataAccessWrapperPrivate *priv; | GdaDataAccessWrapperPrivate *priv; | |||
}; | }; | |||
struct _GdaDataAccessWrapperClass { | struct _GdaDataAccessWrapperClass { | |||
GdaObjectClass parent_class; | GdaObjectClass parent_class; | |||
}; | }; | |||
GType gda_data_access_wrapper_get_type (void); | GType gda_data_access_wrapper_get_type (void); | |||
GdaDataModel *gda_data_access_wrapper_new (GdaDataModel *model); | GdaDataModel *gda_data_access_wrapper_new (GdaDataModel *model); | |||
gboolean gda_data_access_wrapper_row_exists (GdaDataAccessWrapper *wr apper, gint row); | gboolean gda_data_access_wrapper_row_exists (GdaDataAccessWrapper *wr apper, gint row); | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||
gda-data-handler.h | gda-data-handler.h | |||
---|---|---|---|---|
/* gda-data-handler.h | /* gda-data-handler.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DATA_HANDLER_H_ | #ifndef __GDA_DATA_HANDLER_H_ | |||
#define __GDA_DATA_HANDLER_H_ | #define __GDA_DATA_HANDLER_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include "gda-value.h" | #include "gda-value.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-data-model-iter.h | gda-data-model-iter.h | |||
---|---|---|---|---|
/* gda-data-model-iter.h | /* gda-data-model-iter.h | |||
* | * | |||
* Copyright (C) 2005 ( 2006 Vivien Malerba | * Copyright (C) 2005 ( 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DATA_MODEL_ITER_H_ | #ifndef __GDA_DATA_MODEL_ITER_H_ | |||
#define __GDA_DATA_MODEL_ITER_H_ | #define __GDA_DATA_MODEL_ITER_H_ | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include "gda-parameter-list.h" | #include "gda-parameter-list.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-data-proxy.h | gda-data-proxy.h | |||
---|---|---|---|---|
/* gda-data-proxy.h | /* gda-data-proxy.h | |||
* | * | |||
* Copyright (C) 2005 - 2007 Vivien Malerba | * Copyright (C) 2005 - 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DATA_PROXY_H_ | #ifndef __GDA_DATA_PROXY_H_ | |||
#define __GDA_DATA_PROXY_H_ | #define __GDA_DATA_PROXY_H_ | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include <libgda/gda-value.h> | #include <libgda/gda-value.h> | |||
#include <libgda/gda-enums.h> | #include <libgda/gda-enums.h> | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-decl.h | gda-decl.h | |||
---|---|---|---|---|
/* gda-decl.h | /* gda-decl.h | |||
* | * | |||
* Copyright (C) 2004 - 2006 Vivien Malerba | * Copyright (C) 2004 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GLOBAL_DECL_H_ | #ifndef __GLOBAL_DECL_H_ | |||
#define __GLOBAL_DECL_H_ | #define __GLOBAL_DECL_H_ | |||
typedef struct _GdaObject GdaObject; | typedef struct _GdaObject GdaObject; | |||
typedef struct _GdaObjectClass GdaObjectClass; | typedef struct _GdaObjectClass GdaObjectClass; | |||
typedef struct _GdaObjectPrivate GdaObjectPrivate; | typedef struct _GdaObjectPrivate GdaObjectPrivate; | |||
typedef struct _GdaConnection GdaConnection; | typedef struct _GdaConnection GdaConnection; | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-aggregate.h | gda-dict-aggregate.h | |||
---|---|---|---|---|
/* gda-dict-aggregate.h | /* gda-dict-aggregate.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_AGGREGATE_H_ | #ifndef __GDA_DICT_AGGREGATE_H_ | |||
#define __GDA_DICT_AGGREGATE_H_ | #define __GDA_DICT_AGGREGATE_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-constraint.h | gda-dict-constraint.h | |||
---|---|---|---|---|
/* gda-dict-constraint.h | /* gda-dict-constraint.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_CONSTRAINT_H_ | #ifndef __GDA_DICT_CONSTRAINT_H_ | |||
#define __GDA_DICT_CONSTRAINT_H_ | #define __GDA_DICT_CONSTRAINT_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-database.h | gda-dict-database.h | |||
---|---|---|---|---|
/* gda-dict-database.h | /* gda-dict-database.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_DATABASE_H_ | #ifndef __GDA_DICT_DATABASE_H_ | |||
#define __GDA_DICT_DATABASE_H_ | #define __GDA_DICT_DATABASE_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-field.h | gda-dict-field.h | |||
---|---|---|---|---|
/* gda-dict-field.h | /* gda-dict-field.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_FIELD_H_ | #ifndef __GDA_DICT_FIELD_H_ | |||
#define __GDA_DICT_FIELD_H_ | #define __GDA_DICT_FIELD_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include <libgda/libgda.h> | #include <libgda/libgda.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-function.h | gda-dict-function.h | |||
---|---|---|---|---|
/* gda-dict-function.h | /* gda-dict-function.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_FUNCTION_H_ | #ifndef __GDA_DICT_FUNCTION_H_ | |||
#define __GDA_DICT_FUNCTION_H_ | #define __GDA_DICT_FUNCTION_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-private.h | gda-dict-private.h | |||
---|---|---|---|---|
/* gda-dict-private.c | /* gda-dict-private.c | |||
* | * | |||
* Copyright (C) 2006 Vivien Malerba | * Copyright (C) 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_PRIVATE_H__ | #ifndef __GDA_DICT_PRIVATE_H__ | |||
#define __GDA_DICT_PRIVATE_H__ | #define __GDA_DICT_PRIVATE_H__ | |||
#include "gda-dict.h" | #include "gda-dict.h" | |||
#include "gda-connection.h" | #include "gda-connection.h" | |||
struct _GdaDictPrivate | struct _GdaDictPrivate | |||
{ | { | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-reg-aggregates.h | gda-dict-reg-aggregates.h | |||
---|---|---|---|---|
/* gda-dict-reg-aggregates.h | /* gda-dict-reg-aggregates.h | |||
* | * | |||
* Copyright (C) 2006 Vivien Malerba | * Copyright (C) 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_REG_AGGREGATES_H_ | #ifndef __GDA_DICT_REG_AGGREGATES_H_ | |||
#define __GDA_DICT_REG_AGGREGATES_H_ | #define __GDA_DICT_REG_AGGREGATES_H_ | |||
#include <libgda/gda-dict-private.h> | #include <libgda/gda-dict-private.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
GdaDictRegisterStruct *gda_aggregates_get_register (); | GdaDictRegisterStruct *gda_aggregates_get_register (); | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-reg-functions.h | gda-dict-reg-functions.h | |||
---|---|---|---|---|
/* gda-dict-reg-functions.h | /* gda-dict-reg-functions.h | |||
* | * | |||
* Copyright (C) 2006 Vivien Malerba | * Copyright (C) 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_REG_FUNCTIONS_H_ | #ifndef __GDA_DICT_REG_FUNCTIONS_H_ | |||
#define __GDA_DICT_REG_FUNCTIONS_H_ | #define __GDA_DICT_REG_FUNCTIONS_H_ | |||
#include "gda-dict-private.h" | #include "gda-dict-private.h" | |||
GdaDictRegisterStruct *gda_functions_get_register (); | GdaDictRegisterStruct *gda_functions_get_register (); | |||
GSList *gda_functions_get_by_name (GdaDict *dict, const gcha r *aggname); | GSList *gda_functions_get_by_name (GdaDict *dict, const gcha r *aggname); | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-reg-graphs.h | gda-dict-reg-graphs.h | |||
---|---|---|---|---|
/* gda-dict-reg-graphs.h | /* gda-dict-reg-graphs.h | |||
* | * | |||
* Copyright (C) 2006 Vivien Malerba | * Copyright (C) 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_REG_GRAPHS_H_ | #ifndef __GDA_DICT_REG_GRAPHS_H_ | |||
#define __GDA_DICT_REG_GRAPHS_H_ | #define __GDA_DICT_REG_GRAPHS_H_ | |||
#include <libgda/gda-dict-private.h> | #include <libgda/gda-dict-private.h> | |||
GdaDictRegisterStruct *gda_graphs_get_register (); | GdaDictRegisterStruct *gda_graphs_get_register (); | |||
guint gda_graphs_get_serial (GdaDictRegisterStruct *re g); | guint gda_graphs_get_serial (GdaDictRegisterStruct *re g); | |||
void gda_graphs_declare_serial (GdaDictRegisterStruct *re g, guint id); | void gda_graphs_declare_serial (GdaDictRegisterStruct *re g, guint id); | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-reg-queries.h | gda-dict-reg-queries.h | |||
---|---|---|---|---|
/* gda-dict-reg-queries.h | /* gda-dict-reg-queries.h | |||
* | * | |||
* Copyright (C) 2006 Vivien Malerba | * Copyright (C) 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_REG_QUERIES_H_ | #ifndef __GDA_DICT_REG_QUERIES_H_ | |||
#define __GDA_DICT_REG_QUERIES_H_ | #define __GDA_DICT_REG_QUERIES_H_ | |||
#include "gda-dict-private.h" | #include "gda-dict-private.h" | |||
GdaDictRegisterStruct *gda_queries_get_register (); | GdaDictRegisterStruct *gda_queries_get_register (); | |||
guint gda_queries_get_serial (GdaDictRegisterStruct *re g); | guint gda_queries_get_serial (GdaDictRegisterStruct *re g); | |||
void gda_queries_declare_serial (GdaDictRegisterStruct *r eg, guint id); | void gda_queries_declare_serial (GdaDictRegisterStruct *r eg, guint id); | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-reg-types.h | gda-dict-reg-types.h | |||
---|---|---|---|---|
/* gda-dict-reg-types.h | /* gda-dict-reg-types.h | |||
* | * | |||
* Copyright (C) 2006 Vivien Malerba | * Copyright (C) 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_REG_TYPES_H_ | #ifndef __GDA_DICT_REG_TYPES_H_ | |||
#define __GDA_DICT_REG_TYPES_H_ | #define __GDA_DICT_REG_TYPES_H_ | |||
#include "gda-dict.h" | #include "gda-dict.h" | |||
GdaDictRegisterStruct *g_types_get_register (); | GdaDictRegisterStruct *g_types_get_register (); | |||
#endif | #endif | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-table.h | gda-dict-table.h | |||
---|---|---|---|---|
/* gda-dict-table.h | /* gda-dict-table.h | |||
* | * | |||
* Copyright (C) 2003 Vivien Malerba | * Copyright (C) 2003 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_TABLE_H_ | #ifndef __GDA_DICT_TABLE_H_ | |||
#define __GDA_DICT_TABLE_H_ | #define __GDA_DICT_TABLE_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include <libgda/libgda.h> | #include <libgda/libgda.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict-type.h | gda-dict-type.h | |||
---|---|---|---|---|
/* gda-dict-type.h | /* gda-dict-type.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_TYPE_H_ | #ifndef __GDA_DICT_TYPE_H_ | |||
#define __GDA_DICT_TYPE_H_ | #define __GDA_DICT_TYPE_H_ | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include <libgda/libgda.h> | #include <libgda/libgda.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-dict.h | gda-dict.h | |||
---|---|---|---|---|
/* gda-dict.h | /* gda-dict.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_DICT_H_ | #ifndef __GDA_DICT_H_ | |||
#define __GDA_DICT_H_ | #define __GDA_DICT_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <libgda/gda-decl.h> | #include <libgda/gda-decl.h> | |||
#include <libgda/gda-value.h> | #include <libgda/gda-value.h> | |||
#include <libgda/gda-enums.h> | #include <libgda/gda-enums.h> | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-entity-field.h | gda-entity-field.h | |||
---|---|---|---|---|
/* gda-entity-field.h | /* gda-entity-field.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_ENTITY_FIELD_H_ | #ifndef __GDA_ENTITY_FIELD_H_ | |||
#define __GDA_ENTITY_FIELD_H_ | #define __GDA_ENTITY_FIELD_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include "gda-value.h" | #include "gda-value.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-entity.h | gda-entity.h | |||
---|---|---|---|---|
/* gda-entity.h | /* gda-entity.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_ENTITY_H_ | #ifndef __GDA_ENTITY_H_ | |||
#define __GDA_ENTITY_H_ | #define __GDA_ENTITY_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-enums.h | gda-enums.h | |||
---|---|---|---|---|
/* gda-enums.h | /* gda-enums.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_ENUMS__ | #ifndef __GDA_ENUMS__ | |||
#define __GDA_ENUMS__ | #define __GDA_ENUMS__ | |||
/* Isolation state of a transaction */ | /* Isolation state of a transaction */ | |||
typedef enum { | typedef enum { | |||
GDA_TRANSACTION_ISOLATION_UNKNOWN, | GDA_TRANSACTION_ISOLATION_UNKNOWN, | |||
GDA_TRANSACTION_ISOLATION_READ_COMMITTED, | GDA_TRANSACTION_ISOLATION_READ_COMMITTED, | |||
GDA_TRANSACTION_ISOLATION_READ_UNCOMMITTED, | GDA_TRANSACTION_ISOLATION_READ_UNCOMMITTED, | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-graph-item.h | gda-graph-item.h | |||
---|---|---|---|---|
/* gda-graph-item.h | /* gda-graph-item.h | |||
* | * | |||
* Copyright (C) 2004 - 2005 Vivien Malerba | * Copyright (C) 2004 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_GRAPH_ITEM_H_ | #ifndef __GDA_GRAPH_ITEM_H_ | |||
#define __GDA_GRAPH_ITEM_H_ | #define __GDA_GRAPH_ITEM_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include <libgda/gda-decl.h> | #include <libgda/gda-decl.h> | |||
/* Implements the GdaXmlStorage interface */ | /* Implements the GdaXmlStorage interface */ | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-graph-query.h | gda-graph-query.h | |||
---|---|---|---|---|
/* gda-graph-query.h | /* gda-graph-query.h | |||
* | * | |||
* Copyright (C) 2004 - 2005 Vivien Malerba | * Copyright (C) 2004 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_GRAPH_QUERY_H_ | #ifndef __GDA_GRAPH_QUERY_H_ | |||
#define __GDA_GRAPH_QUERY_H_ | #define __GDA_GRAPH_QUERY_H_ | |||
#include "gda-graph.h" | #include "gda-graph.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define GDA_TYPE_GRAPH_QUERY (gda_graph_query_get_type()) | #define GDA_TYPE_GRAPH_QUERY (gda_graph_query_get_type()) | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-graph.h | gda-graph.h | |||
---|---|---|---|---|
/* gda-graph.h | /* gda-graph.h | |||
* | * | |||
* Copyright (C) 2004 - 2005 Vivien Malerba | * Copyright (C) 2004 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_GRAPH_H_ | #ifndef __GDA_GRAPH_H_ | |||
#define __GDA_GRAPH_H_ | #define __GDA_GRAPH_H_ | |||
#include <libgda/gda-decl.h> | #include <libgda/gda-decl.h> | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include <libgda/gda-enums.h> | #include <libgda/gda-enums.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-graphviz.h | gda-graphviz.h | |||
---|---|---|---|---|
/* gda-graphviz.h | /* gda-graphviz.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_GRAPHVIZ_H_ | #ifndef __GDA_GRAPHVIZ_H_ | |||
#define __GDA_GRAPHVIZ_H_ | #define __GDA_GRAPHVIZ_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
typedef struct _GdaGraphviz GdaGraphviz; | typedef struct _GdaGraphviz GdaGraphviz; | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-handler-bin.h | gda-handler-bin.h | |||
---|---|---|---|---|
/* gda-handler-bin.h | /* gda-handler-bin.h | |||
* | * | |||
* Copyright (C) 2005 - 2007 Vivien Malerba | * Copyright (C) 2005 - 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_HANDLER_BIN__ | #ifndef __GDA_HANDLER_BIN__ | |||
#define __GDA_HANDLER_BIN__ | #define __GDA_HANDLER_BIN__ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include <libgda/gda-data-handler.h> | #include <libgda/gda-data-handler.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-handler-boolean.h | gda-handler-boolean.h | |||
---|---|---|---|---|
/* gda-handler-boolean.h | /* gda-handler-boolean.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_HANDLER_BOOLEAN__ | #ifndef __GDA_HANDLER_BOOLEAN__ | |||
#define __GDA_HANDLER_BOOLEAN__ | #define __GDA_HANDLER_BOOLEAN__ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include <libgda/gda-data-handler.h> | #include <libgda/gda-data-handler.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-handler-numerical.h | gda-handler-numerical.h | |||
---|---|---|---|---|
/* gda-handler-numerical.h | /* gda-handler-numerical.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_HANDLER_NUMERICAL__ | #ifndef __GDA_HANDLER_NUMERICAL__ | |||
#define __GDA_HANDLER_NUMERICAL__ | #define __GDA_HANDLER_NUMERICAL__ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include <libgda/gda-data-handler.h> | #include <libgda/gda-data-handler.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-handler-string.h | gda-handler-string.h | |||
---|---|---|---|---|
/* gda-handler-string.h | /* gda-handler-string.h | |||
* | * | |||
* Copyright (C) 2003 - 2007 Vivien Malerba | * Copyright (C) 2003 - 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_HANDLER_STRING__ | #ifndef __GDA_HANDLER_STRING__ | |||
#define __GDA_HANDLER_STRING__ | #define __GDA_HANDLER_STRING__ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include <libgda/gda-data-handler.h> | #include <libgda/gda-data-handler.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-handler-time.h | gda-handler-time.h | |||
---|---|---|---|---|
/* gda-handler-time.h | /* gda-handler-time.h | |||
* | * | |||
* Copyright (C) 2003 - 2007 Vivien Malerba | * Copyright (C) 2003 - 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_HANDLER_TIME__ | #ifndef __GDA_HANDLER_TIME__ | |||
#define __GDA_HANDLER_TIME__ | #define __GDA_HANDLER_TIME__ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include <libgda/gda-data-handler.h> | #include <libgda/gda-data-handler.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-handler-type.h | gda-handler-type.h | |||
---|---|---|---|---|
/* gda-handler-type.h | /* gda-handler-type.h | |||
* | * | |||
* Copyright (C) 2005 Vivien Malerba | * Copyright (C) 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_HANDLER_TYPE__ | #ifndef __GDA_HANDLER_TYPE__ | |||
#define __GDA_HANDLER_TYPE__ | #define __GDA_HANDLER_TYPE__ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include <libgda/gda-data-handler.h> | #include <libgda/gda-data-handler.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-object-ref.h | gda-object-ref.h | |||
---|---|---|---|---|
/* gda-object-ref.h | /* gda-object-ref.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_OBJECT_REF_H_ | #ifndef __GDA_OBJECT_REF_H_ | |||
#define __GDA_OBJECT_REF_H_ | #define __GDA_OBJECT_REF_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define GDA_TYPE_OBJECT_REF (gda_object_ref_get_type()) | #define GDA_TYPE_OBJECT_REF (gda_object_ref_get_type()) | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-object.h | gda-object.h | |||
---|---|---|---|---|
/* gda-object.h | /* gda-object.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_OBJECT_H_ | #ifndef __GDA_OBJECT_H_ | |||
#define __GDA_OBJECT_H_ | #define __GDA_OBJECT_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <libgda/gda-decl.h> | #include <libgda/gda-decl.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-parameter-list.h | gda-parameter-list.h | |||
---|---|---|---|---|
/* gda-parameter-list.h | /* gda-parameter-list.h | |||
* | * | |||
* Copyright (C) 2003 - 2007 Vivien Malerba | * Copyright (C) 2003 - 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_PARAMETER_LIST_H_ | #ifndef __GDA_PARAMETER_LIST_H_ | |||
#define __GDA_PARAMETER_LIST_H_ | #define __GDA_PARAMETER_LIST_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include "gda-value.h" | #include "gda-value.h" | |||
#include <libxml/tree.h> | #include <libxml/tree.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-parameter-util.h | gda-parameter-util.h | |||
---|---|---|---|---|
/* gda-parameter-util.h | /* gda-parameter-util.h | |||
* | * | |||
* Copyright (C) 2007 Vivien Malerba | * Copyright (C) 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_PARAMETER_UTIL_H_ | #ifndef __GDA_PARAMETER_UTIL_H_ | |||
#define __GDA_PARAMETER_UTIL_H_ | #define __GDA_PARAMETER_UTIL_H_ | |||
#include <glib.h> | #include <glib.h> | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-parameter.h | gda-parameter.h | |||
---|---|---|---|---|
/* gda-parameter.h | /* gda-parameter.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_PARAMETER_H_ | #ifndef __GDA_PARAMETER_H_ | |||
#define __GDA_PARAMETER_H_ | #define __GDA_PARAMETER_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include "gda-value.h" | #include "gda-value.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-condition.h | gda-query-condition.h | |||
---|---|---|---|---|
/* gda-query-condition.h | /* gda-query-condition.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_CONDITION_H_ | #ifndef __GDA_QUERY_CONDITION_H_ | |||
#define __GDA_QUERY_CONDITION_H_ | #define __GDA_QUERY_CONDITION_H_ | |||
#include <libgda/gda-query-object.h> | #include <libgda/gda-query-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include <libgda/libgda.h> | #include <libgda/libgda.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-field-agg.h | gda-query-field-agg.h | |||
---|---|---|---|---|
/* gda-query-field-agg.h | /* gda-query-field-agg.h | |||
* | * | |||
* Copyright (C) 2005 - 2006 Vivien Malerba | * Copyright (C) 2005 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_FIELD_AGG_H_ | #ifndef __GDA_QUERY_FIELD_AGG_H_ | |||
#define __GDA_QUERY_FIELD_AGG_H_ | #define __GDA_QUERY_FIELD_AGG_H_ | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include "gda-query-field.h" | #include "gda-query-field.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-field-all.h | gda-query-field-all.h | |||
---|---|---|---|---|
/* gda-query-field-all.h | /* gda-query-field-all.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_FIELD_ALL_H_ | #ifndef __GDA_QUERY_FIELD_ALL_H_ | |||
#define __GDA_QUERY_FIELD_ALL_H_ | #define __GDA_QUERY_FIELD_ALL_H_ | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include "gda-query-field.h" | #include "gda-query-field.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-field-field.h | gda-query-field-field.h | |||
---|---|---|---|---|
/* gda-query-field-field.h | /* gda-query-field-field.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_FIELD_FIELD_H_ | #ifndef __GDA_QUERY_FIELD_FIELD_H_ | |||
#define __GDA_QUERY_FIELD_FIELD_H_ | #define __GDA_QUERY_FIELD_FIELD_H_ | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include "gda-query-field.h" | #include "gda-query-field.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-field-func.h | gda-query-field-func.h | |||
---|---|---|---|---|
/* gda-query-field-func.h | /* gda-query-field-func.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_FIELD_FUNC_H_ | #ifndef __GDA_QUERY_FIELD_FUNC_H_ | |||
#define __GDA_QUERY_FIELD_FUNC_H_ | #define __GDA_QUERY_FIELD_FUNC_H_ | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include "gda-query-field.h" | #include "gda-query-field.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-field-value.h | gda-query-field-value.h | |||
---|---|---|---|---|
/* gda-query-field-value.h | /* gda-query-field-value.h | |||
* | * | |||
* Copyright (C) 2003 - 2007 Vivien Malerba | * Copyright (C) 2003 - 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_FIELD_VALUE_H_ | #ifndef __GDA_QUERY_FIELD_VALUE_H_ | |||
#define __GDA_QUERY_FIELD_VALUE_H_ | #define __GDA_QUERY_FIELD_VALUE_H_ | |||
#include "gda-query-field.h" | #include "gda-query-field.h" | |||
#include "gda-value.h" | #include "gda-value.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-field.h | gda-query-field.h | |||
---|---|---|---|---|
/* gda-query-field.h | /* gda-query-field.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
/* | /* | |||
* This object is the qfield object for most of Mergeant's objects, it prov ides | * This object is the qfield object for most of Mergeant's objects, it prov ides | |||
* basic facilities: | * basic facilities: | |||
* - a reference to the GdaDict object | * - a reference to the GdaDict object | |||
* - a unique id which is used to XML storing procedures | * - a unique id which is used to XML storing procedures | |||
* - some attributes such as name, description and owner of the object (onl y used | * - some attributes such as name, description and owner of the object (onl y used | |||
* for DBMS object which are derived from this class. | * for DBMS object which are derived from this class. | |||
*/ | */ | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-join.h | gda-query-join.h | |||
---|---|---|---|---|
/* gda-query-join.h | /* gda-query-join.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_JOIN_H_ | #ifndef __GDA_QUERY_JOIN_H_ | |||
#define __GDA_QUERY_JOIN_H_ | #define __GDA_QUERY_JOIN_H_ | |||
#include <libgda/gda-query-object.h> | #include <libgda/gda-query-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include <libgda/libgda.h> | #include <libgda/libgda.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-object.h | gda-query-object.h | |||
---|---|---|---|---|
/* gda-query-object.h | /* gda-query-object.h | |||
* | * | |||
* Copyright (C) 2005 Vivien Malerba | * Copyright (C) 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_OBJECT_H_ | #ifndef __GDA_QUERY_OBJECT_H_ | |||
#define __GDA_QUERY_OBJECT_H_ | #define __GDA_QUERY_OBJECT_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <libgda/gda-object.h> | #include <libgda/gda-object.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-parsing.h | gda-query-parsing.h | |||
---|---|---|---|---|
/* gda-query-parsing.h | /* gda-query-parsing.h | |||
* | * | |||
* Copyright (C) 2004 Vivien Malerba | * Copyright (C) 2004 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_PARSING__ | #ifndef __GDA_QUERY_PARSING__ | |||
#define __GDA_QUERY_PARSING__ | #define __GDA_QUERY_PARSING__ | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include <libsql/sql_parser.h> | #include <libsql/sql_parser.h> | |||
#include "sql-delimiter/gda-sql-delimiter.h" | #include "sql-delimiter/gda-sql-delimiter.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-private.h | gda-query-private.h | |||
---|---|---|---|---|
/* gda-query-private.h | /* gda-query-private.h | |||
* | * | |||
* Copyright (C) 2004 Vivien Malerba | * Copyright (C) 2004 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_PRIVATE__ | #ifndef __GDA_QUERY_PRIVATE__ | |||
#define __GDA_QUERY_PRIVATE__ | #define __GDA_QUERY_PRIVATE__ | |||
#include "gda-query.h" | #include "gda-query.h" | |||
#include "sql-delimiter/gda-sql-delimiter.h" | #include "sql-delimiter/gda-sql-delimiter.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query-target.h | gda-query-target.h | |||
---|---|---|---|---|
/* gda-query-target.h | /* gda-query-target.h | |||
* | * | |||
* Copyright (C) 2003 - 2006 Vivien Malerba | * Copyright (C) 2003 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_TARGET_H_ | #ifndef __GDA_QUERY_TARGET_H_ | |||
#define __GDA_QUERY_TARGET_H_ | #define __GDA_QUERY_TARGET_H_ | |||
#include <libgda/gda-query-object.h> | #include <libgda/gda-query-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-query.h | gda-query.h | |||
---|---|---|---|---|
/* gda-query.h | /* gda-query.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_QUERY_H_ | #ifndef __GDA_QUERY_H_ | |||
#define __GDA_QUERY_H_ | #define __GDA_QUERY_H_ | |||
#include <libgda/gda-query-object.h> | #include <libgda/gda-query-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
#include "gda-enums.h" | #include "gda-enums.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
skipping to change at line 64 | skipping to change at line 64 | |||
GDA_QUERY_META_DATA_UPDATE, | GDA_QUERY_META_DATA_UPDATE, | |||
GDA_QUERY_FIELDS_ERROR, | GDA_QUERY_FIELDS_ERROR, | |||
GDA_QUERY_TARGETS_ERROR, | GDA_QUERY_TARGETS_ERROR, | |||
GDA_QUERY_RENDER_ERROR, | GDA_QUERY_RENDER_ERROR, | |||
GDA_QUERY_PARSE_ERROR, | GDA_QUERY_PARSE_ERROR, | |||
GDA_QUERY_SYNTAX_ERROR, | GDA_QUERY_SYNTAX_ERROR, | |||
GDA_QUERY_STRUCTURE_ERROR, | GDA_QUERY_STRUCTURE_ERROR, | |||
GDA_QUERY_SQL_ANALYSE_ERROR, | GDA_QUERY_SQL_ANALYSE_ERROR, | |||
GDA_QUERY_NO_CNC_ERROR, | GDA_QUERY_NO_CNC_ERROR, | |||
GDA_QUERY_CNC_CLOSED_ERROR, | GDA_QUERY_CNC_CLOSED_ERROR, | |||
GDA_QUERY_EXEC_ERROR | GDA_QUERY_EXEC_ERROR, | |||
GDA_QUERY_PARAM_TYPE_ERROR | ||||
} GdaQueryError; | } GdaQueryError; | |||
/* struct for the object's data */ | /* struct for the object's data */ | |||
struct _GdaQuery | struct _GdaQuery | |||
{ | { | |||
GdaQueryObject object; | GdaQueryObject object; | |||
GdaQueryPrivate *priv; | GdaQueryPrivate *priv; | |||
}; | }; | |||
/* struct for the object's class */ | /* struct for the object's class */ | |||
End of changes. 5 change blocks. | ||||
10 lines changed or deleted | 12 lines changed or added | |||
gda-referer.h | gda-referer.h | |||
---|---|---|---|---|
/* gda-referer.h | /* gda-referer.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_REFERER_H_ | #ifndef __GDA_REFERER_H_ | |||
#define __GDA_REFERER_H_ | #define __GDA_REFERER_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-renderer.h | gda-renderer.h | |||
---|---|---|---|---|
/* gda-renderer.h | /* gda-renderer.h | |||
* | * | |||
* Copyright (C) 2003 - 2007 Vivien Malerba | * Copyright (C) 2003 - 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_RENDERER_H_ | #ifndef __GDA_RENDERER_H_ | |||
#define __GDA_RENDERER_H_ | #define __GDA_RENDERER_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <libxml/tree.h> | #include <libxml/tree.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-server-provider-extra.h | gda-server-provider-extra.h | |||
---|---|---|---|---|
/* gda-server-provider-extra.h | /* gda-server-provider-extra.h | |||
* | * | |||
* Copyright (C) 2005 Vivien Malerba | * Copyright (C) 2005 - 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_SERVER_PROVIDER_EXTRA__ | #ifndef __GDA_SERVER_PROVIDER_EXTRA__ | |||
#define __GDA_SERVER_PROVIDER_EXTRA__ | #define __GDA_SERVER_PROVIDER_EXTRA__ | |||
#include <libgda/gda-decl.h> | #include <libgda/gda-decl.h> | |||
#include <libgda/gda-value.h> | #include <libgda/gda-value.h> | |||
#include <libgda/gda-connection.h> | #include <libgda/gda-connection.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
skipping to change at line 69 | skipping to change at line 69 | |||
* misc | * misc | |||
*/ | */ | |||
gboolean gda_server_provider_blob_list_for_update (GdaConnection *cnc, GdaQuery *query, | gboolean gda_server_provider_blob_list_for_update (GdaConnection *cnc, GdaQuery *query, | |||
GdaQuery **out_ select, GError **error); | GdaQuery **out_ select, GError **error); | |||
gboolean gda_server_provider_blob_list_for_delete (GdaConnection *cnc, GdaQuery *query, | gboolean gda_server_provider_blob_list_for_delete (GdaConnection *cnc, GdaQuery *query, | |||
GdaQuery **out_ select, GError **error); | GdaQuery **out_ select, GError **error); | |||
gboolean gda_server_provider_split_update_query (GdaConnection *cnc, GdaQuery *query, | gboolean gda_server_provider_split_update_query (GdaConnection *cnc, GdaQuery *query, | |||
GdaQuery **out_ query, GError **error); | GdaQuery **out_ query, GError **error); | |||
gboolean gda_server_provider_select_query_has_blobs (GdaConnection *cnc, GdaQuery *query, GError **error); | gboolean gda_server_provider_select_query_has_blobs (GdaConnection *cnc, GdaQuery *query, GError **error); | |||
gchar *gda_server_provider_find_file (GdaServerProvi | ||||
der *prov, const gchar *inst_dir, const gchar *filename); | ||||
gchar *gda_server_provider_load_file_contents (const gchar *i | ||||
nst_dir, const gchar *data_dir, const gchar *filename); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif | #endif | |||
End of changes. 6 change blocks. | ||||
10 lines changed or deleted | 16 lines changed or added | |||
gda-server-provider-private.h | gda-server-provider-private.h | |||
---|---|---|---|---|
/* gda-server-provider-private.h | /* gda-server-provider-private.h | |||
* | * | |||
* Copyright (C) 2005 Vivien Malerba | * Copyright (C) 2005 - 2007 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_SERVER_PROVIDER_PRIVATE__ | #ifndef __GDA_SERVER_PROVIDER_PRIVATE__ | |||
#define __GDA_SERVER_PROVIDER_PRIVATE__ | #define __GDA_SERVER_PROVIDER_PRIVATE__ | |||
struct _GdaServerProviderPrivate { | struct _GdaServerProviderPrivate { | |||
GList *connections; | ||||
GHashTable *data_handlers; /* key = a GdaServerProviderHandlerInfo p ointer, value = a GdaDataHandler */ | GHashTable *data_handlers; /* key = a GdaServerProviderHandlerInfo p ointer, value = a GdaDataHandler */ | |||
}; | }; | |||
G_END_DECLS | G_END_DECLS | |||
#endif | #endif | |||
End of changes. 6 change blocks. | ||||
11 lines changed or deleted | 11 lines changed or added | |||
gda-sql-delimiter.h | gda-sql-delimiter.h | |||
---|---|---|---|---|
/* gda-sql-delimiter.h | /* gda-sql-delimiter.h | |||
* | * | |||
* Copyright (C) 2004 - 2006 Vivien Malerba | * Copyright (C) 2004 - 2006 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef _GDA_DELIMITER_SQL_PARSER_H | #ifndef _GDA_DELIMITER_SQL_PARSER_H | |||
#define _GDA_DELIMITER_SQL_PARSER_H | #define _GDA_DELIMITER_SQL_PARSER_H | |||
#include <glib.h> | #include <glib.h> | |||
#define YY_NO_UNISTD_H | #define YY_NO_UNISTD_H | |||
typedef struct _GdaDelimiterStatement GdaDelimiterStatement; | typedef struct _GdaDelimiterStatement GdaDelimiterStatement; | |||
typedef struct _GdaDelimiterExpr GdaDelimiterExpr; | typedef struct _GdaDelimiterExpr GdaDelimiterExpr; | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-threader.h | gda-threader.h | |||
---|---|---|---|---|
/* gda-threader.h | /* gda-threader.h | |||
* | * | |||
* Copyright (C) 2005 Vivien Malerba | * Copyright (C) 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_THREADER_H_ | #ifndef __GDA_THREADER_H_ | |||
#define __GDA_THREADER_H_ | #define __GDA_THREADER_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define GDA_TYPE_THREADER (gda_threader_get_type()) | #define GDA_TYPE_THREADER (gda_threader_get_type()) | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||
gda-xml-storage.h | gda-xml-storage.h | |||
---|---|---|---|---|
/* gda-xml-storage.h | /* gda-xml-storage.h | |||
* | * | |||
* Copyright (C) 2003 - 2005 Vivien Malerba | * Copyright (C) 2003 - 2005 Vivien Malerba | |||
* | * | |||
* This program is free software; you can redistribute it and/or | * This Library is free software; you can redistribute it and/or | |||
* modify it under the terms of the GNU General Public License as | * modify it under the terms of the GNU Library General Public License as | |||
* published by the Free Software Foundation; either version 2 of the | * published by the Free Software Foundation; either version 2 of the | |||
* License, or (at your option) any later version. | * License, or (at your option) any later version. | |||
* | * | |||
* This program is distributed in the hope that it will be useful, | * This Library is distributed in the hope that it will be useful, | |||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
* GNU General Public License for more details. | * Library General Public License for more details. | |||
* | * | |||
* You should have received a copy of the GNU General Public License | * You should have received a copy of the GNU Library General Public | |||
* along with this program; if not, write to the Free Software | * License along with this Library; see the file COPYING.LIB. If not, | |||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330 | |||
* USA | , | |||
* Boston, MA 02111-1307, USA. | ||||
*/ | */ | |||
#ifndef __GDA_XML_STORAGE_H_ | #ifndef __GDA_XML_STORAGE_H_ | |||
#define __GDA_XML_STORAGE_H_ | #define __GDA_XML_STORAGE_H_ | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <libxml/tree.h> | #include <libxml/tree.h> | |||
#include "gda-decl.h" | #include "gda-decl.h" | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
End of changes. 4 change blocks. | ||||
9 lines changed or deleted | 10 lines changed or added | |||