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, 2018. 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 destroy_content_handler(ContentHandler* contentHandler);
41 
50 void processingInstruction(ContentHandler* content_handler,const char *target,const char* data);
63 void startElement(ContentHandler* content_handler,const char *tagName);
75 void attribute(ContentHandler* content_handler,const char* name,const char *value);
86 void characters(ContentHandler* content_handler,const char* data);
99 void endElement(ContentHandler* content_handler,const char* tagName);
100 
101 
102 #endif /* _GRE_H */
void endElement(ContentHandler *content_handler, const char *tagName)
void characters(ContentHandler *content_handler, const char *data)
void attribute(ContentHandler *content_handler, const char *name, const char *value)
void processingInstruction(ContentHandler *content_handler, const char *target, const char *data)
void startElement(ContentHandler *content_handler, const char *tagName)
void destroy_content_handler(ContentHandler *contentHandler)