mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-19 12:32:29 +00:00
30 lines
698 B
C++
30 lines
698 B
C++
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI Reloaded
|
|
// for Raspberry Pi
|
|
//
|
|
// Copyright (C) 2022 Uwe Seimet
|
|
//
|
|
// Helper for serializing/deserializing protobuf messages
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#include "google/protobuf/message.h"
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class ProtobufSerializer
|
|
{
|
|
public:
|
|
|
|
ProtobufSerializer() = default;
|
|
~ProtobufSerializer() = default;
|
|
|
|
void SerializeMessage(int, const google::protobuf::Message&) const;
|
|
void DeserializeMessage(int, google::protobuf::Message&) const;
|
|
size_t ReadBytes(int, vector<byte>&) const;
|
|
};
|