~ubuntu-branches/ubuntu/oneiric/libtorrent/oneiric

« back to all changes in this revision

Viewing changes to src/tracker/tracker_container.h

  • Committer: Bazaar Package Importer
  • Author(s): Jose Luis Rivas
  • Date: 2007-09-11 15:12:31 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20070911151231-brompt7pecvfbaau
Tags: 0.11.8-1
* New upstream version
* debian/patches/update-changelog.patch:
 + Updated with the new changelog.
* debian/control:
 + Added the Homepage field, deleted Homepages from the descriptions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// libTorrent - BitTorrent library
2
 
// Copyright (C) 2005-2006, Jari Sundell
 
2
// Copyright (C) 2005-2007, Jari Sundell
3
3
//
4
4
// This program is free software; you can redistribute it and/or modify
5
5
// it under the terms of the GNU General Public License as published by
57
57
  using base_type::value_type;
58
58
 
59
59
  using base_type::iterator;
 
60
  using base_type::const_iterator;
60
61
  using base_type::reverse_iterator;
 
62
  using base_type::const_reverse_iterator;
61
63
  using base_type::size;
62
64
  using base_type::empty;
63
65
 
81
83
 
82
84
  iterator            find(TrackerBase* tb);
83
85
  iterator            find_enabled(iterator itr);
 
86
  const_iterator      find_enabled(const_iterator itr) const;
84
87
 
85
88
  iterator            begin_group(int group);
86
89
  iterator            end_group(int group)                    { return begin_group(group + 1); }