Changeset 322 in dev for trunk/abdev/BasicCompiler_Common/src/ObjectModule.cpp
- Timestamp:
- Sep 24, 2007, 2:58:10 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abdev/BasicCompiler_Common/src/ObjectModule.cpp
r308 r322 9 9 ObjectModuleDataTypeBinaly, 10 10 }; 11 const ObjectModuleDataType objectModuleDataType = ObjectModuleDataType Text;11 const ObjectModuleDataType objectModuleDataType = ObjectModuleDataTypeBinaly; 12 12 13 13 … … 48 48 return ReadText( filePath ); 49 49 case ObjectModuleDataTypeBinaly: 50 return ReadBinary ( filePath );50 return ReadBinaryFile( filePath ); 51 51 default: 52 52 Jenga::Throw( "" ); … … 64 64 return WriteText( filePath ); 65 65 case ObjectModuleDataTypeBinaly: 66 return WriteBinary ( filePath );66 return WriteBinaryFile( filePath ); 67 67 default: 68 68 Jenga::Throw( "" ); … … 80 80 return ReadTextString( str ); 81 81 case ObjectModuleDataTypeBinaly: 82 Jenga::Throw( "" ); 83 break; 82 return ReadBinaryString( str ); 84 83 default: 85 84 Jenga::Throw( "" ); … … 97 96 return WriteTextString( str ); 98 97 case ObjectModuleDataTypeBinaly: 99 Jenga::Throw( "" ); 100 break; 98 return WriteBinaryString( str ); 101 99 default: 102 100 Jenga::Throw( "" );
Note:
See TracChangeset
for help on using the changeset viewer.