1 /*************************************************************************** 2 begin : Wed Apr 14 2010 3 copyright : (C) 2018 by Martin Preuss 4 email : martin@aqbanking.de 5 6 *************************************************************************** 7 * This file is part of the project "AqBanking". * 8 * Please see toplevel file COPYING of that project for license details. * 9 ***************************************************************************/ 10 11 #ifndef AB_DLG_SETUP_H 12 #define AB_DLG_SETUP_H 13 14 15 #include <aqbanking/banking.h> 16 17 #include <gwenhywfar/dialog.h> 18 #include <gwenhywfar/db.h> 19 20 21 22 /** @defgroup G_AB_DIALOGS_SETUP Online Banking Setup Dialog 23 * @ingroup G_AB_DIALOGS 24 * 25 */ 26 /*@{*/ 27 28 29 #ifdef __cplusplus 30 extern "C" { 31 #endif 32 33 34 35 GWEN_DIALOG *AB_SetupDialog_new(AB_BANKING *ab); 36 37 38 39 #ifdef __cplusplus 40 } 41 #endif 42 43 44 45 /*@}*/ 46 47 48 49 #endif 50 51