mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
Ongoing attempt to get Transformiix building on Windows. Not part of mozilla build.
This commit is contained in:
parent
5d3aa8d7c9
commit
ab0c04a116
@ -21,20 +21,20 @@
|
||||
* Keith Visco, kvisco@ziplink.net
|
||||
* -- original author.
|
||||
*
|
||||
* $Id: txErrorObserver.h,v 1.2 1999/11/15 07:12:39 nisheeth%netscape.com Exp $
|
||||
* $Id: txErrorObserver.h,v 1.3 2005/11/02 07:33:51 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
#ifndef MITRE_ERROROBSERVER_H
|
||||
#define MITRE_ERROROBSERVER_H
|
||||
|
||||
#include "baseutils.h"
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "iostream.h"
|
||||
|
||||
/**
|
||||
* A simple interface for observing errors
|
||||
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
|
||||
* @version $Revision: 1.2 $ $Date: 1999/11/15 07:12:39 $
|
||||
* @version $Revision: 1.3 $ $Date: 2005/11/02 07:33:51 $
|
||||
**/
|
||||
class ErrorObserver {
|
||||
|
||||
|
@ -21,7 +21,7 @@
|
||||
* Keith Visco, kvisco@ziplink.net
|
||||
* -- original author.
|
||||
*
|
||||
* $Id: txXMLUtils.h,v 1.2 1999/11/15 07:12:49 nisheeth%netscape.com Exp $
|
||||
* $Id: txXMLUtils.h,v 1.3 2005/11/02 07:33:34 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -29,7 +29,7 @@
|
||||
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
|
||||
**/
|
||||
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "baseutils.h"
|
||||
|
||||
#ifndef MITRE_XMLUTILS_H
|
||||
|
@ -25,21 +25,21 @@
|
||||
* - changed constant short declarations in many of the classes
|
||||
* with enumerations, commented with //--LF
|
||||
*
|
||||
* $Id: txExpr.h,v 1.2 2005/11/02 07:33:27 Peter.VanderBeken%pandora.be Exp $
|
||||
* $Id: txExpr.h,v 1.3 2005/11/02 07:33:28 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
* XSL expression class definitions.
|
||||
* Much of this code was ported from XSL:P. <BR />
|
||||
* @author <A HREF="mailto:kvisco@ziplink.net">Keith Visco</A>
|
||||
* @version $Revision: 1.2 $ $Date: 2005/11/02 07:33:27 $
|
||||
* @version $Revision: 1.3 $ $Date: 2005/11/02 07:33:28 $
|
||||
**/
|
||||
|
||||
#ifndef TRANSFRMX_EXPR_H
|
||||
#define TRANSFRMX_EXPR_H
|
||||
|
||||
#include <math.h>
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "ErrorObserver.h"
|
||||
#include "NodeSet.h"
|
||||
#include "List.h"
|
||||
|
@ -25,14 +25,14 @@
|
||||
* -- changed constant short declarations in Token and ExprLexer to
|
||||
* enumerations, commented with //--LF
|
||||
*
|
||||
* $Id: txExprLexer.h,v 1.1 2005/11/02 07:33:49 kvisco%ziplink.net Exp $
|
||||
* $Id: txExprLexer.h,v 1.2 2005/11/02 07:33:50 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
|
||||
#ifndef MITREXSL_EXPRLEXER_H
|
||||
#define MITREXSL_EXPRLEXER_H
|
||||
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "baseutils.h"
|
||||
#include <iostream.h>
|
||||
|
||||
@ -42,7 +42,7 @@
|
||||
* This class was ported from XSL:P, an open source Java based
|
||||
* XSLT processor, written by yours truly.
|
||||
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
|
||||
* @version $Revision: 1.1 $ $Date: 2005/11/02 07:33:49 $
|
||||
* @version $Revision: 1.2 $ $Date: 2005/11/02 07:33:50 $
|
||||
**/
|
||||
class Token {
|
||||
|
||||
|
@ -21,21 +21,21 @@
|
||||
* Keith Visco, kvisco@ziplink.net
|
||||
* -- original author.
|
||||
*
|
||||
* $Id: txExprParser.h,v 1.1 2005/11/02 07:33:51 kvisco%ziplink.net Exp $
|
||||
* $Id: txExprParser.h,v 1.2 2005/11/02 07:33:52 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
* ExprParser
|
||||
* This class is used to parse XSL Expressions
|
||||
* @author <A href="mailto:kvisco@ziplink.net">Keith Visco</A>
|
||||
* @version $Revision: 1.1 $ $Date: 2005/11/02 07:33:51 $
|
||||
* @version $Revision: 1.2 $ $Date: 2005/11/02 07:33:52 $
|
||||
* @see ExprLexer
|
||||
**/
|
||||
|
||||
#ifndef MITREXSL_EXPRPARSER_H
|
||||
#define MITREXSL_EXPRPARSER_H
|
||||
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "ExprLexer.h"
|
||||
#include "Expr.h"
|
||||
#include "FunctionLib.h"
|
||||
|
@ -24,7 +24,7 @@
|
||||
* Olivier Gerardin, ogerardin@vo.lu
|
||||
* -- added number functions
|
||||
*
|
||||
* $Id: txFunctionLib.h,v 1.2 2005/11/02 07:33:44 Peter.VanderBeken%pandora.be Exp $
|
||||
* $Id: txFunctionLib.h,v 1.3 2005/11/02 07:33:45 nisheeth%netscape.com Exp $
|
||||
*/
|
||||
|
||||
|
||||
@ -32,7 +32,7 @@
|
||||
#ifndef MITREXSL_FUNCTIONLIB_H
|
||||
#define MITREXSL_FUNCTIONLIB_H
|
||||
|
||||
#include "String.h"
|
||||
#include "TxString.h"
|
||||
#include "primitives.h"
|
||||
#include "NodeSet.h"
|
||||
#include "List.h"
|
||||
|
Loading…
Reference in New Issue
Block a user