#ifndef EE781A91_6D07_47AC_B3C4_F99E29F3731F #define EE781A91_6D07_47AC_B3C4_F99E29F3731F #include #include "../DTO/packet.hpp" #include #include #include #include #include "../helper/split.hpp" #include "../helper/timestampConvert.hpp" void textPacketHandler(std::vector textPacket){ /// Here we have to parse the packet // Create empty packet Packet packet; const std::string textHeader = textPacket[0]; const std::vector headerData = split(textHeader, ' '); std::string textTimestamp = headerData[0]; uint64_t timestamp = convertStringToTimestampMicros(textTimestamp); } #endif /* EE781A91_6D07_47AC_B3C4_F99E29F3731F */