Four Js Genero Report Writer
gre.h
Go to the documentation of this file.
1 /*
2  * FOURJS_START_COPYRIGHT(D,2011)
3  * Property of Four Js*
4  * (c) Copyright Four Js 2011, 2019. All Rights Reserved.
5  * * Trademark of Four Js Development Tools Europe Ltd
6  * in the United States and elsewhere
7  *
8  * This file can be modified by licensees according to the
9  * product manual.
10  * FOURJS_END_COPYRIGHT
11 */
12 
13 #ifndef _GRE_H
14 #define _GRE_H 1
15 
31 struct ContentHandler;
32 typedef struct ContentHandler ContentHandler;
33 
40 void fgl_report_destroyContentHandler(ContentHandler* contentHandler);
41 
50 void fgl_report_processingInstruction(ContentHandler* content_handler,const char *target,const char* data);
63 void fgl_report_startElement(ContentHandler* content_handler,const char *tagName);
75 void fgl_report_attribute(ContentHandler* content_handler,const char* name,const char *value);
86 void fgl_report_characters(ContentHandler* content_handler,const char* data);
99 void fgl_report_endElement(ContentHandler* content_handler,const char* tagName);
100 
101 
102 #endif /* _GRE_H */
void fgl_report_destroyContentHandler(ContentHandler *contentHandler)
void fgl_report_characters(ContentHandler *content_handler, const char *data)
void fgl_report_processingInstruction(ContentHandler *content_handler, const char *target, const char *data)
void fgl_report_endElement(ContentHandler *content_handler, const char *tagName)
void fgl_report_attribute(ContentHandler *content_handler, const char *name, const char *value)
void fgl_report_startElement(ContentHandler *content_handler, const char *tagName)