Program Listing for File time.hpp

Return to documentation for file (foxglove/include/foxglove/time.hpp)

#pragma once

#include <cstdint>

namespace foxglove {

struct Timestamp {
  uint32_t sec;
  uint32_t nsec;
};

struct Duration {
  int32_t sec;
  uint32_t nsec;
};

}  // namespace foxglove