Move ERT packet type to its rightful place.

No longer mixed up with Message types.
This commit is contained in:
Jared Boone 2015-12-08 16:19:27 -08:00
parent 7de187e267
commit eb1402764e
5 changed files with 23 additions and 23 deletions

View file

@ -28,6 +28,7 @@
#include <functional>
#include "baseband_packet.hpp"
#include "ert_packet.hpp"
#include "utility.hpp"
@ -238,13 +239,7 @@ public:
{
}
enum class Type : uint32_t {
Unknown = 0,
IDM = 1,
SCM = 2,
};
Type type { Type::Unknown };
ert::Packet::Type type { ert::Packet::Type::Unknown };
baseband::Packet packet;
};