GnuCash 2.4.99
import-utilities.h
Go to the documentation of this file.
00001 /********************************************************************\
00002  * This program is free software; you can redistribute it and/or    *
00003  * modify it under the terms of the GNU General Public License as   *
00004  * published by the Free Software Foundation; either version 2 of   *
00005  * the License, or (at your option) any later version.              *
00006  *                                                                  *
00007  * This program is distributed in the hope that it will be useful,  *
00008  * but WITHOUT ANY WARRANTY; without even the implied warranty of   *
00009  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    *
00010  * GNU General Public License for more details.                     *
00011  *                                                                  *
00012  * You should have received a copy of the GNU General Public License*
00013  * along with this program; if not, contact:                        *
00014  *                                                                  *
00015  * Free Software Foundation           Voice:  +1-617-542-5942       *
00016  * 51 Franklin Street, Fifth Floor    Fax:    +1-617-542-2652       *
00017  * Boston, MA  02110-1301,  USA       gnu@gnu.org                   *
00018 \********************************************************************/
00025 #ifndef IMPORT_UTILITIES_H
00026 #define IMPORT_UTILITIES_H
00027 
00028 #include "Account.h"
00029 
00035 const gchar * gnc_import_get_acc_online_id(Account * account);
00036 void gnc_import_set_acc_online_id(Account * account,
00037                                   const gchar * string_value);
00044 const gchar * gnc_import_get_trans_online_id(Transaction * transaction);
00045 void gnc_import_set_trans_online_id(Transaction * transaction,
00046                                     const gchar * string_value);
00049 gboolean gnc_import_trans_has_online_id(Transaction * transaction);
00050 
00056 const gchar * gnc_import_get_split_online_id(Split * split);
00057 void gnc_import_set_split_online_id(Split * split,
00058                                     const gchar * string_value);
00061 gboolean gnc_import_split_has_online_id(Split * split);
00062 
00063 #endif
00064 
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines