Update of /cvsroot/openorb/EvaluatorUtility/src/test/org/openorb/constraint/test/idl
In directory usw-pr-cvs1:/tmp/cvs-serv7859/test/org/openorb/constraint/test/idl
Added Files:
evaluator.idl
Log Message:
#501909: Moved the test case in the correct directory.
--- NEW FILE: evaluator.idl ---
// -----------------------------------------------------------------------------------
// Evaluator test
//
// (c) 2000, Exolab.org
// -----------------------------------------------------------------------------------
#pragma prefix "openorb.org"
module constraint
{
struct ValuePair
{
string name;
long value;
};
typedef sequence<string> longSeq;
typedef sequence<ValuePair> pairSeq;
struct Person
{
string first_name;
string last_name;
long old;
any value;
ValuePair pair;
};
struct Inside
{
string address;
boolean value;
};
enum Months
{ January, February, March, April };
struct Other
{
long size;
Inside filterable_data;
};
struct Third
{
Months months;
longSeq seq;
};
union K switch ( long )
{
case 0 :
case 2 : string S;
case 3 : boolean L;
case 5 : long M;
default : double D;
};
struct Fourth
{
K k;
K k2;
pairSeq seq;
};
};
|