You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
484 B
C
21 lines
484 B
C
![]()
7 years ago
|
#ifndef CALC_SERVICE_H_
|
||
|
#define CALC_SERVICE_H_
|
||
|
|
||
![]()
7 years ago
|
#include "webcc/soap_service.h"
|
||
![]()
7 years ago
|
|
||
![]()
7 years ago
|
class CalcService : public webcc::SoapService {
|
||
![]()
7 years ago
|
public:
|
||
|
CalcService() = default;
|
||
|
~CalcService() override = default;
|
||
|
|
||
![]()
7 years ago
|
bool Handle(const webcc::SoapRequest& soap_request,
|
||
|
webcc::SoapResponse* soap_response) override;
|
||
![]()
7 years ago
|
|
||
|
private:
|
||
|
bool GetParameters(const webcc::SoapRequest& soap_request,
|
||
|
double* x,
|
||
|
double* y);
|
||
![]()
7 years ago
|
};
|
||
|
|
||
|
#endif // CALC_SERVICE_H_
|