August 2003
Intermediate to advanced
624 pages
15h 3m
English
The following C++ source and header files implement the base classes described in the chapter. As with the Java implementation, we'll also include our standard error handling routines as well as some standard header files.
Converter.cpp
Converter.h
SourceConverter.cpp
SourceConverter.h
TargetConverter.cpp
TargetConverter.h
DataCell.cpp
DataCell.h
RecordHandler.cpp
RecordHandler.h
RecordReader.cpp
RecordReader.h
RecordWriter.cpp
RecordWriter.h
handleCOMError.cpp
handleParseError.cpp
BlasterIncludes.h
BlasterPrototypes.h
TextConstants.h
A few words are in order about string handling beyond what I noted in Chapter 1. Since C++ handles bytes for I/O as character arrays, we won't have some of Java's complexities in converting to and from bytes and ...