| 15 | |
| 16 | template <class StreamBuf, template <class T> class TypeTraits, bool IsMutable> |
| 17 | ByteStream<StreamBuf, TypeTraits, IsMutable>::DryRun::DryRun( |
| 18 | ByteStream& inStream) |
| 19 | : mStream(inStream), mIsIn(true) { |
| 20 | |
| 21 | mStream.enterDryRun(); |
| 22 | } |
| 23 | |
| 24 | template <class StreamBuf, template <class T> class TypeTraits, bool IsMutable> |
| 25 | ByteStream<StreamBuf, TypeTraits, IsMutable>::DryRun::~DryRun() { |
nothing calls this directly
no test coverage detected