资源简介

本代码实现了基本的车载导航的功能,如gps定位,搜寻最近路径等,基于嵌入式Linux平台,利用qt4.5.6 Creator开发工具进行发开

资源截图

代码片段和文件信息

#include “binaryreader.h“

BinaryReader::BinaryReader()
{
}

double BinaryReader::ReadDouble()
{
    double tempqreal;
    *this>>tempqreal;
    return tempqreal;
}

qint32 BinaryReader::ReadInt32()
{
    qint32 tempint32;
    *this>>tempint32;
    return tempint32;
}

bool BinaryReader::ReadBoolean()
{
    bool tempbool;
    *this>>tempbool;
    return tempbool;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

    .......    439707  2010-12-03 15:08  TIANJIN\poi_point.dbf

----------- ---------  ---------- -----  ----

               439707                    1


评论

共有 条评论