From 5935fac871be9110d1815545879733c9730855f1 Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Thu, 12 Mar 1998 09:26:25 +0000 Subject: [PATCH] updates git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@640 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/engine/ofx-dtd-idl.txt | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/src/engine/ofx-dtd-idl.txt b/src/engine/ofx-dtd-idl.txt index 23a51d2cc9..c102950732 100644 --- a/src/engine/ofx-dtd-idl.txt +++ b/src/engine/ofx-dtd-idl.txt @@ -11,7 +11,7 @@ document that contains financial data. An OFX document would look vaguely like this: - July 17, 1998 + March 10, 1998 $300.00 Buy new microwave oven @@ -50,11 +50,31 @@ Are there any packages that can (b) parse the incoming text document, and build the corresponding C/C++ linked-lists/trees in memory? -I am hitting up the MICO mailing list since at least step (a) is -somewhat similar to parsing a corba IDL file and spitting out C++. +--------------------------------------------------------------- -Comments? +More specifically, given the DTD + + + + + +I want something that will read this, and *automatically* spit out the +following ascii stream: + +class Transaction { + time_t date; + double amount; + char * description; +}; + +--------------------------------------------------------------- +James Clark's SGML/Parser (SP) http://www.jclark.com/sp/index.htm +Jade + +dssslist@mulberrytech.com + +-------------------------------------------------------------- --linas 10 March 1998