Project SkyFire Core
SkyFire 5.4.8 server core API documentation
Loading...
Searching...
No Matches
Singleton.h
Go to the documentation of this file.
1/*
2* This file is part of Project SkyFire https://www.projectskyfire.org.
3* See LICENSE.md file for Copyright information
4*/
5
6#ifndef SKYFIRE_PLATFORM_SINGLETON_H
7#define SKYFIRE_PLATFORM_SINGLETON_H
8
10
11namespace Skyfire
12{
13 template <class T, class Lock = NullMutex>
15 {
16 public:
17 static T* instance()
18 {
19 static T instance;
20 return &instance;
21 }
22 };
23}
24
25#endif
static T * instance()
Definition Singleton.h:17