File: mem_cast.h

package info (click to toggle)
etlcpp 20.39.4%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 18,232 kB
  • sloc: cpp: 245,721; ansic: 10,254; sh: 1,481; asm: 301; python: 281; makefile: 24
file content (78 lines) | stat: -rw-r--r-- 1,172 bytes parent folder | download | duplicates (2)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#pragma once
template <size_t Size_>
class uni_type
{
public:

  static constexpr size_t Size = Size_;

  //***********************************
  template <typename T>
  T& get()
  {
    return *reinterpret_cast<T*>(buffer);
  }

  //***********************************
  template <typename T>
  const T& get() const
  {
    return *reinterpret_cast<T*>(buffer);
  }

  template <typename T>
  operator T()
  {
    return *reinterpret_cast<T*>(buffer);
  }

  //***********************************
  constexpr size_t size() const
  {
    return Size;
  }

private:

  char buffer[Size]
};



template <size_t Size_>
class uni_type_ptr
{
public:

  static constexpr size_t Size = Size_;

  //***********************************
  template <typename T>
  T& get()
  {
    return *reinterpret_cast<T*>(pbuffer);
  }

  //***********************************
  template <typename T>
  const T& get() const
  {
    return *reinterpret_cast<T*>(pbuffer);
  }

  template <typename T>
  operator T()
  {
    return *reinterpret_cast<T*>(pbuffer);
  }

  //***********************************
  constexpr size_t size() const
  {
    return Size;
  }

private:

  char* pbuffer;
};