mirror of
https://gitlab.com/ogelpre/pingxelflut.git
synced 2025-02-22 14:54:09 +01:00
11 lines
158 B
C++
11 lines
158 B
C++
#include "types.hpp"
|
|
|
|
#pragma once
|
|
|
|
namespace net {
|
|
class net_iface{
|
|
public:
|
|
virtual ~net_iface() {};
|
|
virtual types::pixel recv(void) = 0;
|
|
};
|
|
}
|