cereal
A C++11 library for serialization
Main Page
Modules
Classes
Files
File List
All
Classes
Files
Functions
Variables
Typedefs
Enumerations
Groups
include
cereal
details
static_object.hpp
1
/*
2
Copyright (c) 2013, Randolph Voorhies, Shane Grant
3
All rights reserved.
4
5
Redistribution and use in source and binary forms, with or without
6
modification, are permitted provided that the following conditions are met:
7
* Redistributions of source code must retain the above copyright
8
notice, this list of conditions and the following disclaimer.
9
* Redistributions in binary form must reproduce the above copyright
10
notice, this list of conditions and the following disclaimer in the
11
documentation and/or other materials provided with the distribution.
12
* Neither the name of cereal nor the
13
names of its contributors may be used to endorse or promote products
14
derived from this software without specific prior written permission.
15
16
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
17
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
20
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
*/
27
#ifndef CEREAL_DETAILS_STATIC_OBJECT_HPP_
28
#define CEREAL_DETAILS_STATIC_OBJECT_HPP_
29
30
namespace
cereal
31
{
32
namespace
detail
33
{
35
42
template
<
class
T>
43
class
StaticObject
44
{
45
private
:
47
static
void
instantiate(T
const
&) {}
48
49
static
T & create()
50
{
51
static
T t;
52
instantiate(instance);
53
return
t;
54
}
55
56
StaticObject
(
StaticObject
const
& other ) =
delete
;
57
58
public
:
59
static
T & getInstance()
60
{
61
return
create();
62
}
63
64
private
:
65
static
T & instance;
66
};
67
68
template
<
class
T> T &
StaticObject<T>::instance
=
StaticObject<T>::create
();
69
}
70
}
// namespace cereal
71
72
#endif // CEREAL_DETAILS_STATIC_OBJECT_HPP_
Generated on Fri Jul 5 2013 20:54:18 for cereal by
1.8.3.1