Fix indent trouble

This commit is contained in:
jbnadal
2018-04-24 18:22:59 +02:00
parent b1b3f8742c
commit f2a9e3c9c7
29 changed files with 594 additions and 676 deletions

View File

@@ -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 */