dius 0.1.0
Loading...
Searching...
No Matches
ipc.h
Go to the documentation of this file.
1#pragma once
2
3#include "di/execution/io/ipc_protocol.h"
4#include "di/meta/core.h"
5#include "dius/io_context.h"
6
7namespace dius {
8namespace ipc {
9 template<typename Proto>
10 struct IpcServer {};
11}
12
13template<di::concepts::InstanceOf<di::Protocol> Proto>
14constexpr inline auto ipc_server = ipc::IpcServer<Proto> {};
15}
Definition ipc.h:8
Definition directory_entry.h:11
constexpr auto ipc_server
Definition ipc.h:14
Definition ipc.h:10