diff options
author | Patrick Simianer <p@simianer.de> | 2014-07-20 15:25:43 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-07-20 15:25:43 +0200 |
commit | 41046f6ac02a1d947d656d033ecb53a249e7cc7e (patch) | |
tree | c10bc1b555e7636e6f568e1926b01d111320d757 /fast/read_pak.cc | |
parent | 08e9a6f71c80fc7327d1758312b40bd5ba763dc9 (diff) |
cleanup
Diffstat (limited to 'fast/read_pak.cc')
-rw-r--r-- | fast/read_pak.cc | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/fast/read_pak.cc b/fast/read_pak.cc deleted file mode 100644 index c1cf761..0000000 --- a/fast/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]); - size_t i = 0, nn, ne; - 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; -} |