OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
context_functions.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#include <memory>
5#include <thread>
6
7namespace ossia::net
8{
9struct network_context;
10using network_context_ptr = std::shared_ptr<network_context>;
11
12OSSIA_EXPORT
13std::shared_ptr<ossia::net::network_context> create_network_context();
14
15OSSIA_EXPORT
16void run_network_context(ossia::net::network_context&);
17
18OSSIA_EXPORT
19void poll_network_context(ossia::net::network_context&);
20
21OSSIA_EXPORT
22std::thread run_threaded_network_context(ossia::net::network_context&);
23
24OSSIA_EXPORT
25void stop_network_context(ossia::net::network_context&);
26}