|
GnuCash 2.4.99
|
00001 /********************************************************************\ 00002 * policy-p.h -- Implement Accounting Policy Private Header File * 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 XACC_POLICY_P_H 00034 #define XACC_POLICY_P_H 00035 00036 #include "gnc-engine.h" 00037 #include "policy.h" 00038 00039 /* ============================================================== */ 00064 struct gncpolicy_s 00065 { 00066 GNCLot * (*PolicyGetLot) (GNCPolicy *, Split *split); 00067 Split * (*PolicyGetSplit) (GNCPolicy *, GNCLot *lot); 00068 void (*PolicyGetLotOpening) (GNCPolicy *, GNCLot *lot, 00069 gnc_numeric *ret_amount, 00070 gnc_numeric *ret_value, 00071 gnc_commodity **ret_currency); 00072 00073 gboolean (*PolicyIsOpeningSplit) (GNCPolicy *, GNCLot *lot, 00074 Split *split); 00075 }; 00076 00077 #endif /* XACC_POLICY_P_H */
1.7.4