Enable Transformiix on Linux. Don't build on OS/2 for now until bug 53518 is fixed.

git-svn-id: svn://10.0.0.236/trunk@94766 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
nisheeth%netscape.com
2001-05-12 09:54:16 +00:00
parent 94b7bf8d7d
commit 2a7979ae4d
8 changed files with 35 additions and 10 deletions

View File

@@ -21,14 +21,14 @@
* Keith Visco, kvisco@ziplink.net
* -- original author.
*
* $Id: StringResult.cpp,v 1.6 2001-01-22 09:36:19 kvisco%ziplink.net Exp $
* $Id: StringResult.cpp,v 1.7 2001-05-12 09:54:16 nisheeth%netscape.com Exp $
*/
/**
* StringResult
* Represents a String as a Result of evaluating an Expr
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
* @version $Revision: 1.6 $ $Date: 2001-01-22 09:36:19 $
* @version $Revision: 1.7 $ $Date: 2001-05-12 09:54:16 $
**/
#include "ExprResult.h"
@@ -57,6 +57,15 @@ StringResult::StringResult(const String& str) {
this->value = str;
} //-- StringResult
/**
* Creates a new StringResult with the value of the given String parameter
* @param str the String to use for initialization of this StringResult's value
**/
StringResult::StringResult(const char* str) {
//-- copy str
this->value = str;
} //-- StringResult
/**
* Returns the value of this StringResult
**/