summaryrefslogtreecommitdiff
path: root/util/read_pak.cc
diff options
context:
space:
mode:
Diffstat (limited to 'util/read_pak.cc')
-rw-r--r--util/read_pak.cc27
1 files changed, 0 insertions, 27 deletions
diff --git a/util/read_pak.cc b/util/read_pak.cc
deleted file mode 100644
index afd6e6a..0000000
--- a/util/read_pak.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-#include <iostream>
-#include <fstream>
-#include <msgpack.hpp>
-
-using namespace std;
-
-
-int
-main(int argc, char** argv)
-{
- ifstream ifs(argv[1]);
- msgpack::unpacker pac;
- while(true) {
- pac.reserve_buffer(32*1024);
- size_t bytes = ifs.readsome(pac.buffer(), pac.buffer_capacity());
- pac.buffer_consumed(bytes);
- msgpack::unpacked result;
- while(pac.next(&result)) {
- msgpack::object o = result.get();
- cout << o << endl;
- }
- if (!bytes) break;
- }
-
- return 0;
-}
-