1
0
Förgrening 0
spegling av https://gitlab.com/ogelpre/pingxelflut.git synced 2026-02-13 04:18:08 +01:00
pingxelflut/net_iface.hpp
2017-05-26 22:41:14 +02:00

11 rader
158 B
C++

#include "types.hpp"
#pragma once
namespace net {
class net_iface{
public:
virtual ~net_iface() {};
virtual types::pixel recv(void) = 0;
};
}