1 #pragma once
2 #ifndef EVENT_CONN_LIST_H
3 #define EVENT_CONN_LIST_H
4
5 #include "connectionlist.h"
6
7 namespace dmtcp
8 {
9 class EventConnList : public ConnectionList
10 {
11 public:
12 virtual int protectedFd() { return PROTECTED_EVENT_FDREWIRER_FD; }
13 virtual Connection *createDummyConnection(int type);
14 static EventConnList& instance();
15 };
16 }
17
18 #endif