summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/vecstream.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/util/vecstream.cpp')
-rw-r--r--src/lib/util/vecstream.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/lib/util/vecstream.cpp b/src/lib/util/vecstream.cpp
new file mode 100644
index 00000000000..0d584167c62
--- /dev/null
+++ b/src/lib/util/vecstream.cpp
@@ -0,0 +1,22 @@
+// license:BSD-3-Clause
+// copyright-holders:Vas Crabb
+/***************************************************************************
+
+ vecstream.cpp
+
+ streams with vector storage
+
+***************************************************************************/
+
+#include "vecstream.h"
+
+namespace util {
+
+template class basic_ivectorstream<char>;
+template class basic_ivectorstream<wchar_t>;
+template class basic_ovectorstream<char>;
+template class basic_ovectorstream<wchar_t>;
+template class basic_vectorstream<char>;
+template class basic_vectorstream<wchar_t>;
+
+} // namespace util