GnuCash 2.4.99
gnc-plugin-aqbanking.h
Go to the documentation of this file.
00001 /*
00002  * gnc-plugin-aqbanking.h --
00003  *
00004  * This program is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU General Public License as
00006  * published by the Free Software Foundation; either version 2 of
00007  * the License, or (at your option) any later version.
00008  *
00009  * This program is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU General Public License
00015  * along with this program; if not, contact:
00016  *
00017  * Free Software Foundation           Voice:  +1-617-542-5942
00018  * 51 Franklin Street, Fifth Floor    Fax:    +1-617-542-2652
00019  * Boston, MA  02110-1301,  USA       gnu@gnu.org
00020  */
00021 
00033 #ifndef GNC_PLUGIN_AQBANKING_H
00034 #define GNC_PLUGIN_AQBANKING_H
00035 
00036 #include <glib.h>
00037 
00038 #include "gnc-plugin.h"
00039 
00040 G_BEGIN_DECLS
00041 
00042 /* type macros */
00043 #define GNC_TYPE_PLUGIN_AQBANKING            (gnc_plugin_aqbanking_get_type())
00044 #define GNC_PLUGIN_AQBANKING(obj)            (G_TYPE_CHECK_INSTANCE_CAST((obj), GNC_TYPE_PLUGIN_AQBANKING, GncPluginAqBanking))
00045 #define GNC_PLUGIN_AQBANKING_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST((klass), GNC_TYPE_PLUGIN_AQBANKING, GncPluginAqBankingClass))
00046 #define GNC_IS_PLUGIN_AQBANKING(obj)         (G_TYPE_CHECK_INSTANCE_TYPE((obj), GNC_TYPE_PLUGIN_AQBANKING))
00047 #define GNC_IS_PLUGIN_AQBANKING_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), GNC_TYPE_PLUGIN_AQBANKING))
00048 #define GNC_PLUGIN_AQBANKING_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), GNC_TYPE_PLUGIN_AQBANKING, GncPluginAqBankingClass))
00049 
00050 #define GNC_PLUGIN_AQBANKING_NAME "gnc-plugin-aqbanking"
00051 
00052 /* typedefs & structures */
00053 typedef struct
00054 {
00055     GncPlugin gnc_plugin;
00056 } GncPluginAqBanking;
00057 
00058 typedef struct
00059 {
00060     GncPluginClass gnc_plugin;
00061 } GncPluginAqBankingClass;
00062 
00063 /* function prototypes */
00064 
00068 GType gnc_plugin_aqbanking_get_type(void);
00069 
00073 GncPlugin* gnc_plugin_aqbanking_new(void);
00074 
00078 void gnc_plugin_aqbanking_create_plugin(void);
00079 
00083 void gnc_plugin_aqbanking_set_logwindow_visible(gboolean logwindow_visible);
00084 
00085 G_END_DECLS
00086 
00090 #endif /* GNC_PLUGIN_AQBANKING_H */
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines