blob: 91cd3664b5b5494b5f9be58221abdcb487a92600 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | #include "options.hpp"
namespace options
{
namespace detail
{
OPENTRACK_COMPAT_EXPORT opt_singleton& singleton()
{
    static auto ret = std::make_shared<opt_singleton>();
    return *ret;
}
}
}
 |