CARLA
 
载入中...
搜索中...
未找到
命名空间 | 类型定义 | 函数
Memory.h 文件参考
#include <boost/enable_shared_from_this.hpp>
#include <boost/make_shared.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
+ Memory.h 的引用(Include)关系图:
+ 此图展示该文件直接或间接的被哪些文件引用了:

浏览源代码.

命名空间

namespace  carla
 This file contains definitions of common data structures used in traffic manager.
 

类型定义

template<typename T >
using carla::EnableSharedFromThis = boost::enable_shared_from_this<T>
 
template<typename T >
using carla::SharedPtr = boost::shared_ptr<T>
 Use this SharedPtr (boost::shared_ptr) to keep compatibility with boost::python, but it would be nice if in the future we can make a Python adaptor for std::shared_ptr.
 
template<typename T >
using carla::WeakPtr = boost::weak_ptr<T>
 

函数

template<typename T , typename... Args>
static auto carla::MakeShared (Args &&... args)