SaDVIO
globalmap.h
Go to the documentation of this file.
1 #ifndef GLOBALMAP_H
2 #define GLOBALMAP_H
3 
5 
6 namespace isae {
7 
13 class GlobalMap : public AMap {
14  public:
15  GlobalMap() = default;
16 
23  void addFrame(std::shared_ptr<Frame> &frame) override;
24 
25 };
26 
27 } // namespace isae
28 
29 #endif // GLOBALMAP_H
amap.h
isae::GlobalMap::addFrame
void addFrame(std::shared_ptr< Frame > &frame) override
Add a frame to the global map.
Definition: globalmap.cpp:5
isae
Definition: AFeature2D.h:8
isae::GlobalMap::GlobalMap
GlobalMap()=default
isae::GlobalMap
Class for a Global Map.
Definition: globalmap.h:13
isae::AMap
Abstract class for a Map.
Definition: amap.h:16