~ubuntu-branches/debian/experimental/libtorrent/experimental

« back to all changes in this revision

Viewing changes to src/torrent/tracker.h

  • Committer: Bazaar Package Importer
  • Author(s): Jose Luis Rivas
  • Date: 2007-03-31 10:31:05 UTC
  • mto: (4.1.4 gutsy) (6.2.1 squeeze) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20070331103105-jzpp1rml6ud0ff75
Tags: upstream-0.11.4
ImportĀ upstreamĀ versionĀ 0.11.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#define LIBTORRENT_TRACKER_H
39
39
 
40
40
#include <string>
41
 
#include <inttypes.h>
 
41
#include <torrent/common.h>
42
42
 
43
43
namespace torrent {
44
44
 
45
 
class TrackerBase;
46
 
 
47
45
// Consider changing into a Download + tracker id.
48
46
 
49
 
class Tracker {
 
47
class LIBTORRENT_EXPORT Tracker {
50
48
public:
51
49
  typedef std::pair<int, TrackerBase*> value_type;
52
50