Add efficient method to copy data between two streams
diff --git a/common/rdr/OutStream.h b/common/rdr/OutStream.h
index 94d57dd..a749a20 100644
--- a/common/rdr/OutStream.h
+++ b/common/rdr/OutStream.h
@@ -25,6 +25,7 @@
 #define __RDR_OUTSTREAM_H__
 
 #include <rdr/types.h>
+#include <rdr/InStream.h>
 #include <string.h> // for memcpy
 
 namespace rdr {
@@ -100,6 +101,17 @@
       }
     }
 
+    // copyBytes() efficiently transfers data between streams
+
+    void copyBytes(InStream* is, int length) {
+      while (length > 0) {
+        int n = check(1, length);
+        is->readBytes(ptr, n);
+        ptr += n;
+        length -= n;
+      }
+    }
+
     // writeOpaqueN() writes a quantity without byte-swapping.
 
     inline void writeOpaque8( U8  u) { writeU8(u); }