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

« back to all changes in this revision

Viewing changes to src/torrent/poll_select.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_NET_POLL_SELECT_H
39
39
 
40
40
#include <sys/types.h>
 
41
#include <torrent/common.h>
41
42
#include <torrent/poll.h>
42
43
 
43
44
namespace torrent {
48
49
// be called) immidiately before and after the call to work(...). This
49
50
// ensures we dealt with scheduled tasks and updated the cache'ed time.
50
51
 
51
 
class SocketSet;
52
 
 
53
 
class PollSelect : public Poll {
 
52
class LIBTORRENT_EXPORT PollSelect : public Poll {
54
53
public:
55
54
  static PollSelect*  create(int maxOpenSockets);
56
55
  virtual ~PollSelect();