Fix indent trouble
This commit is contained in:
@@ -32,31 +32,30 @@
|
||||
|
||||
/*--------------------------------- Define ----------------------------------*/
|
||||
|
||||
#define kDefaultTimeout 20
|
||||
#define kPassed "passed"
|
||||
#define kFailed "failed"
|
||||
#define kDefaultTimeout 20
|
||||
#define kPassed "passed"
|
||||
#define kFailed "failed"
|
||||
|
||||
/*----------------------------- Dependencies --------------------------------*/
|
||||
|
||||
|
||||
/*--------------------------------- CLASS ----------------------------------*/
|
||||
|
||||
class RestController : public WebController {
|
||||
class RestController : public WebController
|
||||
{
|
||||
public:
|
||||
RestController(const std::string &a_path, const std::string &a_method_get = "", const std::string &a_method_put = "", int a_timeout = kDefaultTimeout, bool a_raw_response = false);
|
||||
virtual ~RestController(void);
|
||||
|
||||
public:
|
||||
RestController (const std::string &a_path, const std::string &a_method_get = "", const std::string &a_method_put = "", int a_timeout = kDefaultTimeout, bool a_raw_response = false);
|
||||
virtual ~RestController (void);
|
||||
WebConnection *new_connection(struct uhttpd_ops *an_ops, struct client *a_client, const std::string &a_parameters);
|
||||
|
||||
WebConnection *new_connection (struct uhttpd_ops *an_ops, struct client *a_client, const std::string &a_parameters);
|
||||
std::string get_method_get(void);
|
||||
std::string get_method_put(void);
|
||||
uint16_t get_timeout(void);
|
||||
bool is_raw_response(void);
|
||||
|
||||
std::string get_method_get (void);
|
||||
std::string get_method_put (void);
|
||||
uint16_t get_timeout (void);
|
||||
bool is_raw_response (void);
|
||||
std::string get_method(uint8_t a_method);
|
||||
|
||||
std::string get_method (uint8_t a_method);
|
||||
|
||||
protected:
|
||||
protected:
|
||||
std::string m_name;
|
||||
std::string m_path;
|
||||
std::string m_method_get;
|
||||
@@ -65,5 +64,4 @@ protected:
|
||||
bool mf_raw_response;
|
||||
};
|
||||
|
||||
|
||||
#endif /* _REST_CONTROLLER_H */
|
||||
|
||||
Reference in New Issue
Block a user