aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/memory/leaky_singleton.h
blob: 03b5e51d782571845928a4b2d97a3ec63a84179b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#pragma once

namespace NYT {

////////////////////////////////////////////////////////////////////////////////

template <class T>
class TLeakyStorage
{
public:
    TLeakyStorage();

    T* Get();

private:
    alignas(T) char Buffer_[sizeof(T)];
};

////////////////////////////////////////////////////////////////////////////////

#define DECLARE_LEAKY_SINGLETON_FRIEND() \
    template <class T>                   \
    friend class ::NYT::TLeakyStorage;

template <class T>
T* LeakySingleton();

////////////////////////////////////////////////////////////////////////////////

} // namespace NYT

#define LEAKY_SINGLETON_INL_H_
#include "leaky_singleton-inl.h"
#undef LEAKY_SINGLETON_INL_H_