/ styx.hh / Content
#ifndef   __STYX_H__
#define   __STYX_H__

#include 
#include 
#include 
#ifndef	__STYX_SAX_H__
#include "styx_sax.hh"
#include "styx_dom.hh"
#endif


#define	XML			"xml"

#define	XML_VERSION		"version"

#define	ENCODING		"encoding"

#define	STANDALONE		"standalone"

#define	CDATA			"CDATA"

#define	XMLNS			"xmlns"

#define	STYX_SPACE		' '
#define	STYX_TAB		't'
#define	STYX_CR			'n'
#define	STYX_INF		'<'
#define	STYX_SUP		'>'
#define	STYX_EQUAL		'='
#define	STYX_DOUBLE_QUOTE	'"'
#define	STYX_INTERROG		'?'
#define	STYX_EXCLAM		'!'
#define	STYX_SLASH		'/'
#define	STYX_MINUS		'-'
#define	STYX_LEFT_BRACE		'['
#define	STYX_RIGHT_BRACE	']'
#define	STYX_COLON		':'
#define	STYX_AT			'@'
#define	STYX_PIPE		'|'
#define	STYX_OPEN_PAR		'('
#define	STYX_CLOSE_PAR		')'
#define	STYX_DOT		'.'
#define	STYX_STAR		'*'


#define	STYX_IS_SPACE(x)	(x == STYX_SPACE || x == STYX_TAB || 
				x == STYX_CR)

#endif /* __STYX_H__ */