// Copyright (c) 2011-2015 The Cryptonote developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include "VectorOutputStream.h" namespace Common { VectorOutputStream::VectorOutputStream(std::vector& out) : out(out) { } size_t VectorOutputStream::writeSome(const void* data, size_t size) { out.insert(out.end(), static_cast(data), static_cast(data) + size); return size; } }