Program Listing for File schema.hpp

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

#pragma once

#include <memory>
#include <string>

namespace foxglove {

struct Schema {
  std::string name;
  std::string encoding;
  const std::byte* data = nullptr;
  size_t data_len = 0;
};

}  // namespace foxglove