22 lines
256 B
C++
22 lines
256 B
C++
#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();
|
|
};
|
|
|
|
#endif /* PAYLOAD_H */
|