nmeaCode.cpp
48 lines
| 714 B
| text/x-c
|
CppLexer
|
r96 | /* | ||
* 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; | ||||
} | ||||
//////////////////////////////////////////////////////////////////////////////////////// | ||||