@@ -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();
};
The note is not visible to the blocked user.