Rename ::Packet to baseband::Packet. Remove IPC packet types.

This commit is contained in:
Jared Boone
2015-12-08 15:15:51 -08:00
parent 280acfd227
commit d0d97e92cb
15 changed files with 69 additions and 76 deletions
+3 -3
View File
@@ -27,7 +27,7 @@
#include <bitset>
#include <string>
#include "packet.hpp"
#include "baseband_packet.hpp"
class ManchesterDecoder {
public:
@@ -37,7 +37,7 @@ public:
};
constexpr ManchesterDecoder(
const ::Packet& packet,
const baseband::Packet& packet,
const size_t sense = 0
) : packet { packet },
sense { sense }
@@ -49,7 +49,7 @@ public:
size_t symbols_count() const;
private:
const ::Packet& packet;
const baseband::Packet& packet;
const size_t sense;
};