summaryrefslogtreecommitdiff
path: root/src/poll_looper.hh
blob: 16097fe799c08ab15d50e93df55377d1f27fb66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef POLL_LOOPER_HH
#define POLL_LOOPER_HH

#include "looper.hh"

class PollLooper : public Looper {
public:
  static PollLooper* create();

  virtual void run() = 0;

  virtual void exit_when_empty() = 0;
};

#endif  // POLL_LOOPER_HH