mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-17 15:06:49 +00:00
08194af424
- Moved C++ code to cpp/ from src/raspberrypi - Related updates to Makefile, easyinstall.sh, and the github build rules - Removed the native X68k C code in src/x68k from the repo
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;
|
|
};
|