forked from premiere/premiere-libtorrent
*** empty log message ***
This commit is contained in:
parent
01d04c159a
commit
1baef63b99
|
@ -87,6 +87,8 @@ namespace libtorrent
|
||||||
const torrent_info& info
|
const torrent_info& info
|
||||||
, const boost::filesystem::path& path);
|
, const boost::filesystem::path& path);
|
||||||
|
|
||||||
|
~piece_manager();
|
||||||
|
|
||||||
void check_pieces(
|
void check_pieces(
|
||||||
boost::mutex& mutex
|
boost::mutex& mutex
|
||||||
, detail::piece_checker_data& data
|
, detail::piece_checker_data& data
|
||||||
|
@ -107,7 +109,7 @@ namespace libtorrent
|
||||||
|
|
||||||
private:
|
private:
|
||||||
struct impl;
|
struct impl;
|
||||||
opaque_value_ptr<impl, false> m_pimpl;
|
std::auto_ptr<impl> m_pimpl;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -425,6 +425,10 @@ namespace libtorrent {
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
piece_manager::~piece_manager()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
void piece_manager::impl::export_piece_map(
|
void piece_manager::impl::export_piece_map(
|
||||||
std::vector<int>& p) const
|
std::vector<int>& p) const
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue