Removing coies of Rhino code

git-svn-id: svn://10.0.0.236/trunk@29407 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
rogerl%netscape.com
1999-04-27 06:25:07 +00:00
parent dda3ccddad
commit 0892cc920b
2 changed files with 0 additions and 55 deletions

View File

@@ -1,29 +0,0 @@
class StackValue {
StackValue(double v)
{
d = v;
}
StackValue(int v)
{
i = v;
}
StackValue(String v)
{
s = v;
}
StackValue(PostorderNodeIterator v)
{
p = v;
}
double d;
PostorderNodeIterator p;
String s;
int i;
}