librascontrolsection.cpp
582 Bytes
#include "librascontrolsection.h"
#define NULL 0
namespace Codificador {
LibrasControlSection::LibrasControlSection() {
timecontrolflag = 0;
}
LibrasControlSection::~LibrasControlSection() {
}
unsigned char LibrasControlSection::getTimeControlFlag() {
return timecontrolflag;
}
void LibrasControlSection::setTimeControlFlag(unsigned char timecontrolflag) {
this->timecontrolflag = timecontrolflag;
}
unsigned char *LibrasControlSection::generateBytes(unsigned short *librasLen) {
return NULL;
}
}