Changeset 523 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/src/Delegate.cpp
- Timestamp:
- May 1, 2008, 11:03:14 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/src/Delegate.cpp
r477 r523 214 214 values.insert( std::map<std::string,std::string>::value_type( 215 215 "#call_method_begin#", 216 (st ring)"Function Call(" + dg.paramStr + ") As " + dg.returnTypeName216 (std::string)"Function Call(" + dg.paramStr + ") As " + dg.returnTypeName 217 217 ) ); 218 218 … … 228 228 values.insert( std::map<std::string,std::string>::value_type( 229 229 "#call_method_begin#", 230 (st ring)"Sub Call(" + dg.paramStr + ")"230 (std::string)"Sub Call(" + dg.paramStr + ")" 231 231 ) ); 232 232 … … 244 244 } 245 245 /* 246 ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\generated_delegate_code.log" ).c_str() );246 std::ofstream ofs( ( Jenga::Common::Environment::GetAppDir() + "\\generated_delegate_code.log" ).c_str() ); 247 247 ofs << destSource; 248 248 ofs.close();
Note:
See TracChangeset
for help on using the changeset viewer.