GnuCash  2.6.99
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
gnc-xml.h
1 /********************************************************************\
2  * gnc-xml.h -- api for gnucash xml i/o *
3  * *
4  * Copyright (C) 2001 James LewisMoss <[email protected]> *
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 [email protected] *
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 #include "gnc-xml-helper.h"
33 #include "sixtp.h"
34 
35 xmlNodePtr gnc_account_dom_tree_create(Account *act, gboolean exporting,
36  gboolean allow_incompat);
37 sixtp* gnc_account_sixtp_parser_create(void);
38 
39 xmlNodePtr gnc_book_dom_tree_create(QofBook *book);
40 sixtp* gnc_book_sixtp_parser_create(void);
41 sixtp* gnc_book_id_sixtp_parser_create(void);
42 sixtp* gnc_book_slots_sixtp_parser_create(void);
43 
44 xmlNodePtr gnc_commodity_dom_tree_create(const gnc_commodity *com);
45 sixtp* gnc_commodity_sixtp_parser_create(void);
46 
47 sixtp* gnc_freqSpec_sixtp_parser_create(void);
48 
49 xmlNodePtr gnc_lot_dom_tree_create(GNCLot *);
50 sixtp* gnc_lot_sixtp_parser_create(void);
51 
52 xmlNodePtr gnc_pricedb_dom_tree_create(GNCPriceDB *db);
53 sixtp* gnc_pricedb_sixtp_parser_create(void);
54 
55 xmlNodePtr gnc_schedXaction_dom_tree_create( SchedXaction *sx );
56 sixtp* gnc_schedXaction_sixtp_parser_create(void);
57 
58 xmlNodePtr gnc_budget_dom_tree_create( GncBudget *bgt );
59 sixtp* gnc_budget_sixtp_parser_create(void);
60 
61 xmlNodePtr gnc_transaction_dom_tree_create(Transaction *txn);
62 sixtp* gnc_transaction_sixtp_parser_create(void);
63 
64 sixtp* gnc_template_transaction_sixtp_parser_create(void);
65 
66 #endif /* GNC_XML_H */
Definition: sixtp.h:93
a simple price database for gnucash
GnuCash Budgets.
All type declarations for the whole Gnucash engine.
Scheduled Transactions public handling routines.