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:
@@ -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
|
||||
**/
|
||||
|
||||
Reference in New Issue
Block a user