interface.cpp

来自「基于多假设的地图匹配算法。程序能够根据车辆在行驶过程中收集到的GPS/DR数据正」· C++ 代码 · 共 41 行

CPP
41
字号
/******************************************************************************    File Name:    common/Interface.cpp    Description:  default implementations of the framework******************************************************************************//******************************************************************************    Author:       alfred.liushu@gmail.com	    Upadate:      2008/09/17  File founded    Copyright 2008-2009 Robot Lab., Dept.of Automation, Tsinghua University******************************************************************************/#include "../map/LoadSubMap.h"#include "../common/Interface.h"/******************************                   Default implementations of the framework  ***************************************************//*Constructor*/Interface::Interface():curTime(0){    return;}/*Destructor*/Interface::~Interface(){    return;}/*Load submap from file*/RETCHECK Interface::LoadSubMapFile(const char* mapPath){    return LoadSubMap(mapPath, GPSCenter, submap);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?