Fix indent trouble
This commit is contained in:
@@ -36,26 +36,26 @@ struct client;
|
||||
|
||||
/*--------------------------------- CLASS ----------------------------------*/
|
||||
|
||||
class HttpParameter {
|
||||
class HttpParameter
|
||||
{
|
||||
public:
|
||||
HttpParameter(void);
|
||||
|
||||
public:
|
||||
HttpParameter (void);
|
||||
std::string parse_from_uri(const std::string &a_parameters);
|
||||
|
||||
std::string parse_from_uri (const std::string &a_parameters);
|
||||
bool parse(client *a_client);
|
||||
|
||||
bool parse (client *a_client);
|
||||
std::string get_origin(void);
|
||||
std::string get_etag(void);
|
||||
int16_t get_request_timeout(void);
|
||||
|
||||
std::string get_origin (void);
|
||||
std::string get_etag (void);
|
||||
int16_t get_request_timeout (void);
|
||||
private:
|
||||
std::vector<std::string> split_params(const std::string &a_string, char a_seperator);
|
||||
bool is_number(const std::string &a_string);
|
||||
|
||||
private:
|
||||
std::vector<std::string> split_params (const std::string &a_string, char a_seperator);
|
||||
bool is_number (const std::string & a_string);
|
||||
|
||||
std::string m_origin;
|
||||
std::string m_etag;
|
||||
int16_t m_request_timeout;
|
||||
int16_t m_request_timeout;
|
||||
};
|
||||
|
||||
#endif /* _HTTP_PARAMETERS_H */
|
||||
|
||||
Reference in New Issue
Block a user