| 34 | using namespace e57; |
| 35 | |
| 36 | SourceDestBufferImpl::SourceDestBufferImpl( ImageFileImplWeakPtr destImageFile, |
| 37 | const ustring &pathName, const size_t capacity, |
| 38 | bool doConversion, bool doScaling ) : |
| 39 | destImageFile_( destImageFile ), pathName_( pathName ), memoryRepresentation_( Int32 ), |
| 40 | capacity_( capacity ), doConversion_( doConversion ), doScaling_( doScaling ) |
| 41 | { |
| 42 | } |
| 43 | |
| 44 | template <typename T> void SourceDestBufferImpl::setTypeInfo( T *base, size_t stride ) |
| 45 | { |