GnuCash  5.6-150-g038405b370+
gnc-xml.h
1 /********************************************************************\
2  * gnc-xml.h -- api for gnucash xml i/o *
3  * *
4  * Copyright (C) 2001 James LewisMoss <dres@debian.org> *
5  * *
6  * This program is free software; you can redistribute it and/or *
7  * modify it under the terms of the GNU General Public License as *
8  * published by the Free Software Foundation; either version 2 of *
9  * the License, or (at your option) any later version. *
10  * *
11  * This program is distributed in the hope that it will be useful, *
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14  * GNU General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU General Public License*
17  * along with this program; if not, contact: *
18  * *
19  * Free Software Foundation Voice: +1-617-542-5942 *
20  * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
21  * Boston, MA 02110-1301, USA gnu@gnu.org *
22  * *
23 \********************************************************************/
24 
25 #ifndef GNC_XML_H
26 #define GNC_XML_H
27 
28 #include "SchedXaction.h"
29 #include "gnc-engine.h"
30 #include "gnc-pricedb.h"
31 #include "gnc-budget.h"
32 
33 #include "gnc-xml-helper.h"
34 #include "sixtp.h"
35 
36 xmlNodePtr gnc_account_dom_tree_create (Account* act, gboolean exporting,
37  gboolean allow_incompat);
38 sixtp* gnc_account_sixtp_parser_create (void);
39 
40 xmlNodePtr gnc_book_dom_tree_create (QofBook* book);
41 sixtp* gnc_book_sixtp_parser_create (void);
42 sixtp* gnc_book_id_sixtp_parser_create (void);
43 sixtp* gnc_book_slots_sixtp_parser_create (void);
44 
45 xmlNodePtr gnc_commodity_dom_tree_create (const gnc_commodity* com);
46 sixtp* gnc_commodity_sixtp_parser_create (void);
47 
48 sixtp* gnc_freqSpec_sixtp_parser_create (void);
49 
50 xmlNodePtr gnc_lot_dom_tree_create (GNCLot*);
51 sixtp* gnc_lot_sixtp_parser_create (void);
52 
53 xmlNodePtr gnc_pricedb_dom_tree_create (GNCPriceDB* db);
54 sixtp* gnc_pricedb_sixtp_parser_create (void);
55 
56 xmlNodePtr gnc_schedXaction_dom_tree_create (SchedXaction* sx);
57 sixtp* gnc_schedXaction_sixtp_parser_create (void);
58 
59 xmlNodePtr gnc_budget_dom_tree_create (GncBudget* bgt);
60 sixtp* gnc_budget_sixtp_parser_create (void);
61 
62 xmlNodePtr gnc_transaction_dom_tree_create (Transaction* txn);
63 sixtp* gnc_transaction_sixtp_parser_create (void);
64 
65 sixtp* gnc_template_transaction_sixtp_parser_create (void);
66 
67 #endif /* GNC_XML_H */
Definition: sixtp.h:129
a simple price database for gnucash
STRUCTS.
GnuCash Budgets.
All type declarations for the whole Gnucash engine.
Scheduled Transactions public handling routines.