27 lines
1.2 KiB
C++
27 lines
1.2 KiB
C++
|
/***************************************************************************
|
|||
|
ofx_sgml.h
|
|||
|
-------------------
|
|||
|
begin : Tue Mar 19 2002
|
|||
|
copyright : (C) 2002 by Benoit Gr<EFBFBD>goire
|
|||
|
email : benoitg@coeus.ca
|
|||
|
***************************************************************************/
|
|||
|
/** @file
|
|||
|
* \brief OFX/SGML parsing functionnality.
|
|||
|
*/
|
|||
|
/***************************************************************************
|
|||
|
* *
|
|||
|
* This program is free software; you can redistribute it and/or modify *
|
|||
|
* it under the terms of the GNU General Public License as published by *
|
|||
|
* the Free Software Foundation; either version 2 of the License, or *
|
|||
|
* (at your option) any later version. *
|
|||
|
* *
|
|||
|
***************************************************************************/
|
|||
|
#ifndef OFC_SGML_H
|
|||
|
#define OFC_SGML_H
|
|||
|
#include "context.hh"
|
|||
|
|
|||
|
///Parses a DTD and OFX file(s)
|
|||
|
int ofc_proc_sgml(LibofxContext * libofx_context, int argc, char * const* argv);
|
|||
|
|
|||
|
#endif
|