00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef GNC_BUSINESS_OPTIONS_UTILS_H_
00026 #define GNC_BUSINESS_OPTIONS_UTILS_H_
00027
00028 #include "option-util.h"
00029 #include "gncTaxTable.h"
00030 #include "gncInvoice.h"
00031 #include "gncCustomer.h"
00032 #include "gncVendor.h"
00033
00034
00035 GncTaxTable* gnc_option_db_lookup_taxtable_option(GNCOptionDB *odb,
00036 const char *section,
00037 const char *name,
00038 GncTaxTable * default_value);
00039
00040 GncInvoice* gnc_option_db_lookup_invoice_option(GNCOptionDB *odb,
00041 const char *section,
00042 const char *name,
00043 GncInvoice * default_value);
00044
00045 GncCustomer* gnc_option_db_lookup_customer_option(GNCOptionDB *odb,
00046 const char *section,
00047 const char *name,
00048 GncCustomer * default_value);
00049
00050 GncVendor* gnc_option_db_lookup_vendor_option(GNCOptionDB *odb,
00051 const char *section,
00052 const char *name,
00053 GncVendor * default_value);
00054
00055
00056 #endif