From: Teiniker E. <tei...@us...> - 2007-01-22 13:05:14
|
Update of /cvsroot/ccmtools/ccmtools/test/Cpp/gnu_cpp In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv25149/test/Cpp/gnu_cpp Added Files: Makefile Hello.idl.tmp HelloWithError.idl.tmp Log Message: Added support for windows cl preprocessor. --- NEW FILE: HelloWithError.idl.tmp --- # 1 "idl/Hello.idl" # 1 "<built-in>" # 1 "<command line>" # 1 "idl/Hello.idl" # 9 "idl/Hello.idl" # 1 "idl/Console.idl" 1 # 1 "idl/Message.idl" 1 struct Message { string header; string body; }; # 9 "idl/Console.idl" 2 interface Console { string read_string(in Message m); }; # 10 "idl/Hello.idl" 2 # 1 "idl/Lcd.idl" 1 interface Lcd { long write_text(in string s2); }; # 11 "idl/Hello.idl" 2 component Hello { attribute string prompt; provides Console console; uses Lcd lcd }; home HelloHome manages Hello { }; --- NEW FILE: Makefile --- all: cpp -o Hello.idl.tmp -Iidl idl/Hello.idl clean: rm Hello.idl.tmp --- NEW FILE: Hello.idl.tmp --- # 1 "idl/Hello.idl" # 1 "<built-in>" # 1 "<command line>" # 1 "idl/Hello.idl" # 9 "idl/Hello.idl" # 1 "idl/Console.idl" 1 # 1 "idl/Message.idl" 1 struct Message { string header; string body; }; # 9 "idl/Console.idl" 2 interface Console { string read_string(in Message m); }; # 10 "idl/Hello.idl" 2 # 1 "idl/Lcd.idl" 1 interface Lcd { long write_text(in string s2); }; # 11 "idl/Hello.idl" 2 component Hello { attribute string prompt; provides Console console; uses Lcd lcd; }; home HelloHome manages Hello { }; |