Fixing class declarations. Not part of build yet.

a=leaf


git-svn-id: svn://10.0.0.236/trunk@65446 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
Peter.VanderBeken%pandora.be 2000-04-06 22:36:39 +00:00
parent d0fdac4dbe
commit 7ed19d2d00
3 changed files with 8 additions and 8 deletions

View File

@ -21,7 +21,7 @@
* Keith Visco, kvisco@ziplink.net
* -- original author.
*
* $Id: List.h,v 1.2 1999-11-15 07:12:40 nisheeth%netscape.com Exp $
* $Id: List.h,v 1.3 2000-04-06 22:35:28 Peter.VanderBeken%pandora.be Exp $
*/
#include "baseutils.h"
@ -32,7 +32,7 @@
/**
* Represents an ordered list of Object pointers. Modeled after a Java 2 List.
* @author <a href="mailto:kvisco@ziplink.net">Keith Visco</a>
* @version $Revision: 1.2 $ $Date: 1999-11-15 07:12:40 $
* @version $Revision: 1.3 $ $Date: 2000-04-06 22:35:28 $
**/
class List {
@ -178,7 +178,7 @@ private:
int count;
//-- points to the current list item
List::ListItem* currentItem;
ListItem* currentItem;
//-- points to the list to iterator over
List* list;

View File

@ -28,7 +28,7 @@
* Eric Du, duxy@leyou.com.cn
* -- added fix for FreeBSD
*
* $Id: primitives.h,v 1.3 2000-02-18 00:11:24 kvisco%ziplink.net Exp $
* $Id: primitives.h,v 1.4 2000-04-06 22:36:39 Peter.VanderBeken%pandora.be Exp $
*/
@ -124,7 +124,7 @@ public:
* The result into the destination String.
* @return the given dest string
**/
static String& Double::toString(double value, String& dest);
static String& toString(double value, String& dest);
private:
@ -158,7 +158,7 @@ public:
/**
* Creates a new Integer based on the value of the given String
**/
Integer::Integer(const String& str);
Integer(const String& str);
/**
* Returns the int value of this Integer

View File

@ -24,7 +24,7 @@
* Olivier Gerardin, ogerardin@vo.lu
* -- added number functions
*
* $Id: FunctionLib.h,v 1.1 2000-04-06 07:45:30 kvisco%ziplink.net Exp $
* $Id: FunctionLib.h,v 1.2 2000-04-06 22:35:20 Peter.VanderBeken%pandora.be Exp $
*/
@ -166,7 +166,7 @@ protected:
* Evaluates the given Expression and converts it's result to a String.
* The value is appended to the given destination String
**/
void FunctionCall::evaluateToString
void evaluateToString
(Expr* expr, Node* context, ContextState* cs, String& dest);
/**