blob: 48cc514be4e60c87285afc631a2a622adbb327cc (
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 opt_singleton ret;
    return ret;
}
}
}
 |