CoreUtils/IMFRequest.h
2020-11-07 17:25:37 -08:00

28 lines
373 B
C++

#ifndef __IMFRequest_h__
#define __IMFRequest_h__
#include "PString.h"
namespace coreutils {
class IMFRequest {
public:
IMFRequest();
IMFRequest(PString &in);
bool parse(PString &in);
std::string getMethod();
std::string getURI();
std::string getProtocol();
private:
std::vector<PString> parts;
};
}
#endif