writer.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <vector>
4 
5 // TCP / UDP
6 template <typename T>
7 class Writer
8 {
9 public:
10  virtual bool get(std::vector<std::unique_ptr<T>>& packets) = 0;
11  virtual bool start() = 0;
12  virtual bool stop() = 0;
13 };
virtual bool stop()=0
Definition: writer.h:7
virtual bool start()=0


pf_driver
Author(s): Harsh Deshpande
autogenerated on Fri Feb 24 2023 03:59:35