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