Sophie

Sophie

distrib > Mageia > 5 > x86_64 > media > core-updates-src > by-pkgid > c8adf57bffe08ad612fd17fce38c62a7 > files > 3

libtorrent-rasterbar-0.16.18-1.2.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