10 lines
No EOL
166 B
C++
10 lines
No EOL
166 B
C++
#pragma once
|
|
|
|
namespace hel {
|
|
namespace common {
|
|
template <class T> struct PointerWrapper {
|
|
T *ptr_;
|
|
PointerWrapper();
|
|
};
|
|
} // namespace common
|
|
} // namespace hel
|