Apollo  6.0
Open source self driving car software
base_forward_declaration.h
Go to the documentation of this file.
1 /******************************************************************************
2  * Copyright 2018 The Apollo Authors. All Rights Reserved.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *****************************************************************************/
16 #pragma once
17 
18 #include <memory>
19 
20 namespace apollo {
21 namespace perception {
22 namespace fusion {
23 
25 typedef std::shared_ptr<SensorFrameHeader> SensorFrameHeaderPtr;
26 typedef std::shared_ptr<const SensorFrameHeader> SensorFrameHeaderConstPtr;
27 
29 typedef std::shared_ptr<SensorFrame> SensorFramePtr;
30 typedef std::shared_ptr<const SensorFrame> SensorFrameConstPtr;
31 
32 class Sensor;
33 typedef std::shared_ptr<Sensor> SensorPtr;
34 typedef std::shared_ptr<const Sensor> SensorConstPtr;
35 
36 } // namespace fusion
37 } // namespace perception
38 } // namespace apollo
std::shared_ptr< SensorFrameHeader > SensorFrameHeaderPtr
Definition: base_forward_declaration.h:24
PlanningContext is the runtime context in planning. It is persistent across multiple frames...
Definition: atomic_hash_map.h:25
Definition: sensor.h:34
std::shared_ptr< Sensor > SensorPtr
Definition: base_forward_declaration.h:32
std::shared_ptr< SensorFrame > SensorFramePtr
Definition: base_forward_declaration.h:28
std::shared_ptr< const Sensor > SensorConstPtr
Definition: base_forward_declaration.h:34
std::shared_ptr< const SensorFrameHeader > SensorFrameHeaderConstPtr
Definition: base_forward_declaration.h:26
Definition: sensor_frame.h:45
std::shared_ptr< const SensorFrame > SensorFrameConstPtr
Definition: base_forward_declaration.h:30