资源简介
本代码实现了基本的车载导航的功能,如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
- 上一篇:视频压缩代码jm17.1
- 下一篇:spark全套视频教程
相关资源
- linux命令大全(chm)
- GPS定位
- 细说Linux-兄弟连李明老师
- Linux系统基础教程.pdf
- ARM嵌入式Linux系统开发从入门到精通
- 鸟哥的linux私房菜(第三版)
- linux系统命令及其详解
- 嵌入式linux应用开发完全手册(韦东山
- Linux编程入门之 C 语言环境_chm
- 鸟哥的Linux私房菜
- linux 系统
- Linux从入门到精通.chm
- linux网络编程
- linux嵌入式开发
- linux基础命令教程豪华版
- linux c socket api
- Linux Netfilter编程源码
- Linux TCP 编程步骤
- GPSViewer 1.5汉化版
- linux综合实验,初级5和中级1
- gps捕获算法
- linux can 应用测试程序
- Linux中图片旋转,缩放,合并
- Linux C 常用库函数手册(最新整理)
- Linux下WOL的rpm包及使用说明
- 哈工大 操作系统实验4 linux0.01信号量
- linux C/S聊天,基于TCP的socket网络编程
- linux串口、网口编程类
- QQ聊天系统---linux课设
- LINUX下简单聊天工具_模拟QQ
评论
共有 条评论