From: Teiniker E. <tei...@us...> - 2007-01-22 13:05:16
|
Update of /cvsroot/ccmtools/ccmtools/test/Cpp/multiple_source_files/idl3Repo/component In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25149/test/Cpp/multiple_source_files/idl3Repo/component Added Files: HelloHome.idl Hello.idl.tmp Hello.idl Log Message: Added support for windows cl preprocessor. --- NEW FILE: Hello.idl --- /* * This file was automatically generated by CCM Tools version 0.8.5 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ #ifndef ___HELLO__IDL__ #define ___HELLO__IDL__ #include <Console.idl> #include <Lcd.idl> component Hello { attribute string prompt; provides ::Console console; uses ::Lcd lcd; }; // This is a hack to make the CppGenerator happy !!! #include <HelloHome.idl> #endif /* ___HELLO__IDL__ */ --- NEW FILE: Hello.idl.tmp --- /* * This file was automatically generated by CCM Tools version 0.8.5 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ # 10 "/home/eteinik/sandbox/workspace-development/ccmtools-trunk/test/Cpp/multiple_source_files/idl3Repo/interface/Console.idl" 1 /* * This file was automatically generated by CCM Tools version 0.8.5 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ # 10 "/home/eteinik/sandbox/workspace-development/ccmtools-trunk/test/Cpp/multiple_source_files/idl3Repo/interface/Message.idl" 1 /* * This file was automatically generated by CCM Tools version 0.8.5 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ struct Message { string header; string body; }; # 10 "/home/eteinik/sandbox/workspace-development/ccmtools-trunk/test/Cpp/multiple_source_files/idl3Repo/interface/Message.idl" 2 interface Console { string read_string(in ::Message m); }; # 10 "/home/eteinik/sandbox/workspace-development/ccmtools-trunk/test/Cpp/multiple_source_files/idl3Repo/interface/Console.idl" 2 # 11 "/home/eteinik/sandbox/workspace-development/ccmtools-trunk/test/Cpp/multiple_source_files/idl3Repo/interface/Lcd.idl" 1 /* * This file was automatically generated by CCM Tools version 0.8.5 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ interface Lcd { long write_text(in string s2); }; # 11 "/home/eteinik/sandbox/workspace-development/ccmtools-trunk/test/Cpp/multiple_source_files/idl3Repo/interface/Lcd.idl" 2 component Hello { attribute string prompt; provides ::Console console; uses ::Lcd lcd; }; // This is a hack to make the CppGenerator happy !!! # 26 "/home/eteinik/sandbox/workspace-development/ccmtools-trunk/test/Cpp/multiple_source_files/idl3Repo/component/HelloHome.idl" 1 /* * This file was automatically generated by CCM Tools version 0.8.5 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ # 10 "/home/eteinik/sandbox/workspace-development/ccmtools-trunk/test/Cpp/multiple_source_files/idl3Repo/component/Hello.idl" 1 /* * This file was automatically generated by CCM Tools version 0.8.5 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ --- NEW FILE: HelloHome.idl --- /* * This file was automatically generated by CCM Tools version 0.8.5 * <http://ccmtools.sourceforge.net> * DO NOT EDIT! */ #ifndef ___HELLOHOME__IDL__ #define ___HELLOHOME__IDL__ #include <Hello.idl> home HelloHome manages ::Hello { }; #endif /* ___HELLOHOME__IDL__ */ |