OSSIA
Open Scenario System for Interactive Application
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 
10 namespace spdlog
11 {
12 namespace sinks
13 {
14 class sink;
15 }
16 using sink_ptr = std::shared_ptr<sinks::sink>;
17 }
18 
19 namespace ossia
20 {
26 struct 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