| Index: core/src/fxcrt/extension.h
|
| diff --git a/core/src/fxcrt/extension.h b/core/src/fxcrt/extension.h
|
| index bf60292a4d5a292c924beaeb1b5ddc4c6b9bb71c..bda7f62297bd54e4aeb614bd11115300981afb06 100644
|
| --- a/core/src/fxcrt/extension.h
|
| +++ b/core/src/fxcrt/extension.h
|
| @@ -28,7 +28,7 @@ public:
|
| virtual FX_BOOL Truncate(FX_FILESIZE szFile) = 0;
|
| };
|
| IFXCRT_FileAccess* FXCRT_FileAccess_Create();
|
| -class CFX_CRTFileAccess : public IFX_FileAccess, public CFX_Object
|
| +class CFX_CRTFileAccess : public IFX_FileAccess
|
| {
|
| public:
|
| CFX_CRTFileAccess() : m_RefCount(0) {}
|
| @@ -66,7 +66,7 @@ protected:
|
| CFX_WideString m_path;
|
| FX_DWORD m_RefCount;
|
| };
|
| -class CFX_CRTFileStream FX_FINAL : public IFX_FileStream, public CFX_Object
|
| +class CFX_CRTFileStream FX_FINAL : public IFX_FileStream
|
| {
|
| public:
|
| CFX_CRTFileStream(IFXCRT_FileAccess* pFA) : m_pFile(pFA), m_dwCount(1), m_bUseRange(FALSE), m_nOffset(0), m_nSize(0) {}
|
| @@ -171,7 +171,7 @@ public:
|
| #define FX_MEMSTREAM_BlockSize (64 * 1024)
|
| #define FX_MEMSTREAM_Consecutive 0x01
|
| #define FX_MEMSTREAM_TakeOver 0x02
|
| -class CFX_MemoryStream FX_FINAL : public IFX_MemoryStream, public CFX_Object
|
| +class CFX_MemoryStream FX_FINAL : public IFX_MemoryStream
|
| {
|
| public:
|
| CFX_MemoryStream(FX_BOOL bConsecutive)
|
|
|