|
GnuCash 2.4.99
|
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 \********************************************************************/ 00019 /* 00020 * gnc-ofx-kvp.h 00021 * 00022 * Created on: 13.03.2011 00023 * Author: cs 00024 */ 00025 00026 #ifndef GNC_OFX_KVP_H_ 00027 #define GNC_OFX_KVP_H_ 00028 00029 #include <glib.h> 00030 #include <engine/Account.h> 00031 00032 Account *gnc_ofx_kvp_get_assoc_account(const Account* investment_account); 00033 00034 void gnc_ofx_kvp_set_assoc_account(Account* investment_account, 00035 const Account *associated_income_accout); 00036 00037 00038 #endif /* GNC_OFX_CONVERSIONS_H_ */
1.7.4