Web framework C++
2.0.0
Simple web framework on c++ designed to easily create web pages, etc
Main Page
Classes
Files
File List
File Members
include
message_body.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
10
class
MessageBody
{
11
std::string body;
12
public
:
16
MessageBody
();
17
24
MessageBody
(std::string & body);
25
32
MessageBody
(
const
char
* body);
33
40
void
setBody
(std::string & body);
41
48
std::string
getBody
();
49
53
void
clear
();
54
};
MessageBody
wrapper class for http body
Definition:
message_body.h:10
MessageBody::setBody
void setBody(std::string &body)
MessageBody::getBody
std::string getBody()
MessageBody::MessageBody
MessageBody()
MessageBody::clear
void clear()
Generated by
1.8.11