20 #ifndef SRC_INTERNALS_MEMORY_HPP_
21 #define SRC_INTERNALS_MEMORY_HPP_
34 template<
class T,
class... Types> std::unique_ptr<T> make_unique(Types&&... Args) {
35 return (std::unique_ptr<T>(
new T(std::forward<Types>(Args)...)));
the namespace which wraps all Core Public C++ API classes.
Definition: Connection.hpp:36