|
From: <lmj...@us...> - 2003-11-25 21:56:20
|
Update of /cvsroot/ccmtools/ccmtools/test/CppGenerator/home_types
In directory sc8-pr-cvs1:/tmp/cvs-serv2082/home_types
Modified Files:
Hello.idl
Log Message:
+ moving interface tests to types tests
+ removing attribute tests (duplicated in home tests)
+ removing include tests (duplicated in owudb and calculator tests)
Index: Hello.idl
===================================================================
RCS file: /cvsroot/ccmtools/ccmtools/test/CppGenerator/home_types/Hello.idl,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Hello.idl 19 Nov 2003 21:45:50 -0000 1.1
--- Hello.idl 25 Nov 2003 21:56:16 -0000 1.2
***************
*** 14,17 ****
--- 14,22 ----
typedef double doubleArray[10];
+ interface LongCommon {
+ void set_attrib_long(in long param);
+ long get_attrib_long();
+ };
+
component Hello {
/* basic types */
***************
*** 33,36 ****
--- 38,44 ----
attribute map sequence_value;
attribute doubleArray array_value;
+
+ /* interface types */
+ attribute LongCommon the_long;
};
***************
*** 54,57 ****
--- 62,68 ----
factory create_with_sequence(in map p);
factory create_with_array(in doubleArray p);
+
+ /* interface types */
+ factory copy_from(in LongCommon the_long);
};
|