| 57 | SetCodePage(CP_ACP); |
| 58 | } |
| 59 | virtual ~TextStream() |
| 60 | { |
| 61 | if (mBuffer) |
| 62 | free(mBuffer); |
| 63 | //if (mLocale) |
| 64 | // _free_locale(mLocale); |
| 65 | // Close() isn't called here, it will rise a "pure virtual function call" exception. |
| 66 | } |
| 67 | |
| 68 | bool Open(LPCTSTR aFileSpec, DWORD aFlags, UINT aCodePage = CP_ACP); |
| 69 | void Close() |
nothing calls this directly
no outgoing calls
no test coverage detected