##// END OF EJS Templates

File last commit:

r115:116
r115:116
Show More
nmeaCode.h
29 lines | 474 B | text/x-c | CLexer
/*
* nemeaCode.h
*
* Created on: Oct 21, 2014
* Author: Alan Aguilar Sologuren
*/
#ifndef NMEALIB_NMEALIB___NMEACODE_H_
#define NMEALIB_NMEALIB___NMEACODE_H_
#include "nmea_defs.h"
class nmeaCode {
public:
nmeaCode(char* name=nullptr);
virtual ~nmeaCode();
bool nmea_code_set(const char* cd);
bool nmea_code_get(char* cd);
private:
size_t size;
const char codename[8];
const int type;
char *codebuff;
};
#endif /* NMEALIB_NMEALIB___NMEACODE_H_ */