##// END OF EJS Templates

File last commit:

r96:97
r107:108
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;
}
////////////////////////////////////////////////////////////////////////////////////////