|
GnuCash 2.4.99
|
00001 /* 00002 * gnc-sx-instance-dense-cal-adapter.h 00003 * 00004 * Copyright (C) 2006 Josh Sled <jsled@asynchronous.org> 00005 * 00006 * This program is free software; you can redistribute it and/or 00007 * modify it under the terms of version 2 and/or version 3 of the GNU General Public 00008 * License as published by the Free Software Foundation. 00009 * 00010 * This program is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 * GNU General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU General Public License 00016 * along with this program; if not, contact: 00017 * 00018 * Free Software Foundation Voice: +1-617-542-5942 00019 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 00020 * Boston, MA 02110-1301, USA gnu@gnu.org 00021 */ 00022 00023 #ifndef _GNC_SX_INSTANCE_DENSE_CAL_ADAPTER_H 00024 #define _GNC_SX_INSTANCE_DENSE_CAL_ADAPTER_H 00025 00026 #include "config.h" 00027 #include <glib.h> 00028 #include "gnc-sx-instance-model.h" 00029 00030 typedef struct _GncSxInstanceDenseCalAdapterClass GncSxInstanceDenseCalAdapterClass; 00031 typedef struct _GncSxInstanceDenseCalAdapter GncSxInstanceDenseCalAdapter; 00032 00033 #define GNC_TYPE_SX_INSTANCE_DENSE_CAL_ADAPTER (gnc_sx_instance_dense_cal_adapter_get_type ()) 00034 #define GNC_SX_INSTANCE_DENSE_CAL_ADAPTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNC_TYPE_SX_INSTANCE_DENSE_CAL_ADAPTER, GncSxInstanceDenseCalAdapter)) 00035 #define GNC_SX_INSTANCE_DENSE_CAL_ADAPTER_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GNC_TYPE_SX_INSTANCE_DENSE_CAL_ADAPTER, GncSxInstanceDenseCalAdapterClass)) 00036 #define GNC_IS_SX_INSTANCE_DENSE_CAL_ADAPTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GNC_TYPE_SX_INSTANCE_DENSE_CAL_ADAPTER)) 00037 #define GNC_IS_SX_INSTANCE_DENSE_CAL_ADAPTER_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GNC_TYPE_SX_INSTANCE_DENSE_CAL_ADAPTER)) 00038 #define GNC_SX_INSTANCE_DENSE_CAL_ADAPTER_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GNC_TYPE_SX_INSTANCE_DENSE_CAL_ADAPTER, GncSxInstanceDenseCalAdapterClass)) 00039 00040 GncSxInstanceDenseCalAdapter* gnc_sx_instance_dense_cal_adapter_new(GncSxInstanceModel *instances); 00041 GType gnc_sx_instance_dense_cal_adapter_get_type(void); 00042 00043 #endif // _GNC_SX_INSTANCE_DENSE_CAL_ADAPTER_H
1.7.4