#ifndef CODELABS_CPP101_SOLUTIONS_SERVICES_MATH_MATH_SERVICE_H_
#define CODELABS_CPP101_SOLUTIONS_SERVICES_MATH_MATH_SERVICE_H_
#include "codelabs/cpp101/solutions/services/math/public/mojom/math_service.mojom.h"
#include "mojo/public/cpp/bindings/receiver.h"
namespace math {
class MathService : public mojom::MathService {
public:
explicit MathService(mojo::PendingReceiver<mojom::MathService> receiver);
~MathService() override;
MathService(const MathService&) = delete;
MathService& operator=(const MathService&) = delete;
private:
void Divide(int32_t dividend,
int32_t divisor,
DivideCallback callback) override;
mojo::Receiver<mojom::MathService> receiver_;
};
}
#endif