~ubuntu-branches/ubuntu/maverick/libtorrent-rasterbar/maverick

« back to all changes in this revision

Viewing changes to include/libtorrent/parse_url.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Christophe Sauthier
  • Date: 2010-08-10 12:59:37 UTC
  • mfrom: (1.3.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100810125937-jbcmmf17y8yo9hgz
Tags: 0.15.0-0ubuntu1
* New upstream version.
* debian/patches/100_fix_html_docs.patch: refreshed.
* debian/control: bump up standards-version to 3.9.1 (no changes).

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
 
46
46
#include <string>
47
47
#include "libtorrent/config.hpp"
 
48
#include "libtorrent/error_code.hpp"
48
49
 
49
50
namespace libtorrent
50
51
{
51
52
 
52
53
        TORRENT_EXPORT boost::tuple<std::string, std::string
53
 
                , std::string, int, std::string, char const*>
54
 
                parse_url_components(std::string url);
 
54
                , std::string, int, std::string>
 
55
                parse_url_components(std::string url, error_code& ec);
55
56
 
56
57
}
57
58