Bruno Allaire-Lemay / NerfUSXbee
Committer:
GaiSensei
Date:
Thu Mar 30 17:55:53 2017 +0000
Revision:
18:10bc91c3fb42
Parent:
15:ab3e0d32e578
Fixed more bogues

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GaiSensei 15:ab3e0d32e578 1 #ifndef XBEE_RECEIVER_INTERFACE_HPP
GaiSensei 15:ab3e0d32e578 2 #define XBEE_RECEIVER_INTERFACE_HPP
GaiSensei 15:ab3e0d32e578 3
GaiSensei 15:ab3e0d32e578 4 #include <vector>
GaiSensei 15:ab3e0d32e578 5
GaiSensei 15:ab3e0d32e578 6 class XbeeReceiverInterface
GaiSensei 15:ab3e0d32e578 7 {
GaiSensei 15:ab3e0d32e578 8 public:
GaiSensei 15:ab3e0d32e578 9 virtual void start() = 0;
GaiSensei 15:ab3e0d32e578 10 };
GaiSensei 15:ab3e0d32e578 11
GaiSensei 15:ab3e0d32e578 12 #endif