aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/memory/leaky_singleton.h
blob: ebcfa2465296b154b988c760aa59d316d008793c (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
35
#pragma once

namespace NYT {

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

template <class T>
class TLeakyStorage
{
public:
    template <class... TArgs>
    explicit TLeakyStorage(TArgs&&... args);

    T* Get();

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

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

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

template <class T, class... TArgs>
T* LeakySingleton(TArgs&&... args);

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

} // namespace NYT

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