Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-updates-src > by-pkgid > f47a0e61e88bf410b026e4f8c5218641 > files > 2

libtorrent-rasterbar-0.16.18-1.1.mga5.src.rpm

// 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