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
init_params.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <string>
4
10
class
InitParams
{
11
bool
IPv6;
12
int
port;
13
std::string host;
14
std::string logFilePath;
15
public
:
19
InitParams
();
20
29
InitParams
(
int
argc,
char
** argv);
30
37
bool
isIPv6
();
38
45
const
char
*
getIP
();
46
53
int
getPort
();
54
61
std::string
getFilePath
();
62
};
InitParams::getFilePath
std::string getFilePath()
InitParams::InitParams
InitParams()
InitParams
InitParams is intended to get web-server configs from command line arguments.
Definition:
init_params.h:10
InitParams::getIP
const char * getIP()
InitParams::getPort
int getPort()
InitParams::isIPv6
bool isIPv6()
Generated by
1.8.11