Webserv
Loading...
Searching...
No Matches
AEventHandler.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <stdint.h>
4
5namespace network {
6
20public:
21 virtual ~AEventHandler();
22 virtual void handleEvent(uint32_t events) = 0;
23 virtual int getHandle() const = 0;
24
25protected:
27
28private:
31};
32
33} // namespace network
virtual ~AEventHandler()
Definition AEventHandler.cpp:8
virtual int getHandle() const =0
AEventHandler & operator=(const AEventHandler &)
virtual void handleEvent(uint32_t events)=0
AEventHandler(const AEventHandler &)
AEventHandler()
Definition AEventHandler.cpp:5
Definition Acceptor.hpp:8