premiere-libtorrent/bindings/python/src/bytes.hpp

19 lines
385 B
C++

// Copyright Arvid Norberg 2006-2013. Use, modification and distribution is
// subject to the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef BYTES_HPP
#define BYTES_HPP
#include <string>
struct bytes
{
bytes(std::string const& s): arr(s) {}
bytes() {}
std::string arr;
};
#endif