Fixed more bogues

include/RealXbeeTransmitter.hpp

Committer:
GaiSensei
Date:
2017-03-30
Revision:
18:10bc91c3fb42
Parent:
16:f4df01448b59

File content as of revision 18:10bc91c3fb42:

#ifndef REAL_XBEE_TRANSMITTER_HPP
#define REAL_XBEE_TRANSMITTER_HPP

#include "xbee.h"
#include "XbeeTransmitterInterface.hpp"

class RealXbeeTransmitter : public XbeeTransmitterInterface
{
    public:
        RealXbeeTransmitter();
        virtual void transmit(const std::vector<uint8_t>& bytes);  
};

#endif