##// END OF EJS Templates
codigo fuente de librería NMEAlib++ basado en el codigo original de:...
codigo fuente de librería NMEAlib++ basado en el codigo original de: NMEA library URL: http://nmea.sourceforge.net Author: Tim (xtimor@gmail.com) Licence: http://www.gnu.org/licenses/lgpl.html

File last commit:

r96:97
r96:97
Show More
nmeaCode.cpp
48 lines | 714 B | text/x-c | CppLexer
/*
* nemeaCode.cpp
*
* Created on: Oct 21, 2014
* Author: Alan Aguilar Sologuren
*/
#include "nmeaCode.h"
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#include <time.h>
#include <math.h>
#include <float.h>
#include <limits.h>
#include <ctype.h>
#include <stdlib.h>
nmeaCode::nmeaCode(char* name=nullptr):
codebuff(nullptr){
}
nmeaCode::~nmeaCode() {
// TODO Auto-generated destructor stub
}
virtual void nmeaCode::code_init() {
}
virtual int nmeaCode::code_gen(char *buff, int buff_sz) {
return 0;
}
virtual int nmeaCode::code_parse(const char *buff, int buff_sz) {
return 0;
}
////////////////////////////////////////////////////////////////////////////////////////