13 lines
183 B
C++
13 lines
183 B
C++
|
#pragma once
|
||
|
|
||
|
#include "datatypes.hpp"
|
||
|
#include <string>
|
||
|
|
||
|
namespace oro {
|
||
|
struct Ping {
|
||
|
Timestamp generation_timestamp;
|
||
|
std::string message;
|
||
|
int version;
|
||
|
};
|
||
|
} //namespace oro
|