GnuCash c935c2f+
Loading...
Searching...
No Matches
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
36xmlNodePtr gnc_account_dom_tree_create (Account* act, gboolean exporting,
37 gboolean allow_incompat);
38sixtp* gnc_account_sixtp_parser_create (void);
39
40xmlNodePtr gnc_book_dom_tree_create (QofBook* book);
41sixtp* gnc_book_sixtp_parser_create (void);
42sixtp* gnc_book_id_sixtp_parser_create (void);
43sixtp* gnc_book_slots_sixtp_parser_create (void);
44
45xmlNodePtr gnc_commodity_dom_tree_create (const gnc_commodity* com);
46sixtp* gnc_commodity_sixtp_parser_create (void);
47
48sixtp* gnc_freqSpec_sixtp_parser_create (void);
49
50xmlNodePtr gnc_lot_dom_tree_create (GNCLot*);
51sixtp* gnc_lot_sixtp_parser_create (void);
52
53xmlNodePtr gnc_pricedb_dom_tree_create (GNCPriceDB* db);
54sixtp* gnc_pricedb_sixtp_parser_create (void);
55
56xmlNodePtr gnc_schedXaction_dom_tree_create (SchedXaction* sx);
57sixtp* gnc_schedXaction_sixtp_parser_create (void);
58
59xmlNodePtr gnc_budget_dom_tree_create (GncBudget* bgt);
60sixtp* gnc_budget_sixtp_parser_create (void);
61
62xmlNodePtr gnc_transaction_dom_tree_create (Transaction* txn);
63sixtp* gnc_transaction_sixtp_parser_create (void);
64
65sixtp* gnc_template_transaction_sixtp_parser_create (void);
66
67#endif /* GNC_XML_H */
Scheduled Transactions public handling routines.
GnuCash Budgets.
All type declarations for the whole Gnucash engine.
a simple price database for gnucash
STRUCTS.
QofBook reference.
Definition qofbook-p.hpp:47
Definition sixtp.h:130