Update of /cvsroot/ccmtools/ccmtools/test/IDLParser/include/idl3/component/world
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv449/test/IDLParser/include/idl3/component/world
Added Files:
Test.idl TestHomeMirror.idl TestHome.idl
Log Message:
Refactored test directory
--- NEW FILE: TestHomeMirror.idl ---
/*
* This file was automatically generated by CCM Tools version 0.8.0
* <http://ccmtools.sourceforge.net>
* DO NOT EDIT!
*/
#ifndef ___WORLD_TESTHOME_MIRROR__IDL__
#define ___WORLD_TESTHOME_MIRROR__IDL__
#include <world/TestMirror.idl>
module world {
home TestHomeMirror
manages ::world::TestMirror
{
};
}; // /module world
#endif /* ___WORLD_TESTHOME_MIRROR__IDL__ */
--- NEW FILE: TestHome.idl ---
/*
* This file was automatically generated by CCM Tools version 0.8.0
* <http://ccmtools.sourceforge.net>
* DO NOT EDIT!
*/
#ifndef ___WORLD_TESTHOME__IDL__
#define ___WORLD_TESTHOME__IDL__
#include <world/Test.idl>
//module world {
home TestHome
manages Test
{
};
//}; // /module world
#endif /* ___WORLD_TESTHOME__IDL__ */
--- NEW FILE: Test.idl ---
/*
* This file was automatically generated by CCM Tools version 0.8.0
* <http://ccmtools.sourceforge.net>
* DO NOT EDIT!
*/
#ifndef ___WORLD_TEST__IDL__
#define ___WORLD_TEST__IDL__
#include <world/IFace.idl>
//module world {
component Test
{
provides ::world::IFace inPort;
uses ::world::IFace singlePort;
uses multiple ::world::IFace multiPort;
};
//}; // /module world
// This is a hack to make the CppGenerator happy !!!
#include <world/TestHome.idl>
#endif /* ___WORLD_TEST__IDL__ */
|