36 Request(
const std::string& ip_in,
const std::string& ip_out,
int time,
char type,
int arrival);
A class to represent a network request.
Definition request.h:15
int getProcessTime() const
Gets the processing time of the request.
Definition request.cpp:45
std::string getIpIn() const
Gets the input IP address of the request.
Definition request.cpp:31
char getJobType() const
Gets the job type of the request.
Definition request.cpp:52
std::string getIpOut() const
Gets the output IP address of the request.
Definition request.cpp:38
int getArrivalTime() const
Gets the arrival time of the request.
Definition request.cpp:59
Request()
Default constructor for Request.
Definition request.cpp:9