From: Teiniker E. <tei...@us...> - 2007-02-25 10:53:56
|
Update of /cvsroot/ccmtools/ccmtools/test/JavaAssembly/prototype2/xxx/idl3/component/wamas/Test In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv14346/test/JavaAssembly/prototype2/xxx/idl3/component/wamas/Test Added Files: C1.idl C2.idl H2.idl H1.idl Log Message: Added second prototype for Java assemblies. --- NEW FILE: H1.idl --- /* * This file was automatically generated by CCM Tools version 0.9.0 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ #ifndef ___WAMAS_TEST_H1__IDL__ #define ___WAMAS_TEST_H1__IDL__ #include <wamas/Test/C1.idl> module wamas { module Test { home H1 manages ::wamas::Test::C1 { }; }; // /module Test }; // /module wamas #endif /* ___WAMAS_TEST_H1__IDL__ */ --- NEW FILE: C2.idl --- /* * This file was automatically generated by CCM Tools version 0.9.0 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ #ifndef ___WAMAS_TEST_C2__IDL__ #define ___WAMAS_TEST_C2__IDL__ #include <wamas/Test/I2.idl> #include <wamas/Test/I3.idl> module wamas { module Test { component C2 { attribute long b; provides ::wamas::Test::I2 i2; uses ::wamas::Test::I3 i3; }; }; // /module Test }; // /module wamas // This is a hack to make the CppGenerator happy !!! #include <wamas/Test/H2.idl> #endif /* ___WAMAS_TEST_C2__IDL__ */ --- NEW FILE: C1.idl --- /* * This file was automatically generated by CCM Tools version 0.9.0 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ #ifndef ___WAMAS_TEST_C1__IDL__ #define ___WAMAS_TEST_C1__IDL__ #include <wamas/Test/I1.idl> #include <wamas/Test/I2.idl> module wamas { module Test { component C1 { attribute string a1; attribute long a2; provides ::wamas::Test::I1 i1; uses ::wamas::Test::I2 i2; }; }; // /module Test }; // /module wamas // This is a hack to make the CppGenerator happy !!! #include <wamas/Test/H1.idl> #endif /* ___WAMAS_TEST_C1__IDL__ */ --- NEW FILE: H2.idl --- /* * This file was automatically generated by CCM Tools version 0.9.0 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ #ifndef ___WAMAS_TEST_H2__IDL__ #define ___WAMAS_TEST_H2__IDL__ #include <wamas/Test/C2.idl> module wamas { module Test { home H2 manages ::wamas::Test::C2 { }; }; // /module Test }; // /module wamas #endif /* ___WAMAS_TEST_H2__IDL__ */ |