================ idCompressor_None::Write ================ */
| 131 | ================ |
| 132 | */ |
| 133 | int idCompressor_None::Write( const void *inData, int inLength ) { |
| 134 | if ( compress == false || inLength <= 0 ) { |
| 135 | return 0; |
| 136 | } |
| 137 | return file->Write( inData, inLength ); |
| 138 | } |
| 139 | |
| 140 | /* |
| 141 | ================ |
no outgoing calls
no test coverage detected