work in progress

This commit is contained in:
2022-11-06 23:30:21 +01:00
parent f13900156e
commit 8bdf357e1a
4 changed files with 45 additions and 2 deletions

View File

@@ -1,11 +1,19 @@
#ifndef PAYLOAD_H
#define PAYLOAD_H
#include <stdlib.h>
#include <vector>
class Payload
{
private:
std::vector<char> Data;
public:
size_t getSize();
char* getData();
void push_char(char);
Payload();
virtual ~Payload();
};