OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
context.hpp
Go to the documentation of this file.
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#include <memory>
5#include <vector>
6
10namespace spdlog
11{
12namespace sinks
13{
14class sink;
15}
16using sink_ptr = std::shared_ptr<sinks::sink>;
17}
18
19namespace ossia
20{
26struct OSSIA_EXPORT context
27{
29 context();
30
32 context(const std::vector<spdlog::sink_ptr>& sinks);
33
34 ~context();
35};
36}
Definition git_info.h:7
If using the library, you should create this class at some point.
Definition context.hpp:27