librascontrolsection.h 548 Bytes
#ifndef _LIBRAS_CONTROL_SECTION_H_
#define _LIBRAS_CONTROL_SECTION_H_

namespace Codificador {

    class LibrasControlSection {
    protected:
        unsigned int type;        
        unsigned char timecontrolflag;
        unsigned char messageid;

    public:

        LibrasControlSection();
        virtual ~LibrasControlSection();

        unsigned char getTimeControlFlag();
        
        void setTimeControlFlag(unsigned char timecontrolflag);

        virtual unsigned char *generateBytes(unsigned short *librasLen);
    };

}

#endif