danicoin/src/Serialization/JsonInputStreamSerializer.cpp

29 lines
699 B
C++
Raw Normal View History

// Copyright (c) 2011-2016 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
2014-09-15 17:33:47 +00:00
2015-07-30 15:22:07 +00:00
#include "Serialization/JsonInputStreamSerializer.h"
2014-09-15 17:33:47 +00:00
#include <ctype.h>
#include <exception>
2015-05-27 12:08:46 +00:00
namespace CryptoNote {
2014-09-15 17:33:47 +00:00
2015-07-30 15:22:07 +00:00
namespace {
Common::JsonValue getJsonValueFromStreamHelper(std::istream& stream) {
Common::JsonValue value;
stream >> value;
return value;
}
}
JsonInputStreamSerializer::JsonInputStreamSerializer(std::istream& stream) : JsonInputValueSerializer(getJsonValueFromStreamHelper(stream)) {
2014-09-15 17:33:47 +00:00
}
JsonInputStreamSerializer::~JsonInputStreamSerializer() {
}
2015-05-27 12:08:46 +00:00
} //namespace CryptoNote