chromium/codelabs/cpp101/solutions/services/math/math_service.h

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {};

}  // namespace math

#endif  // CODELABS_CPP101_SOLUTIONS_SERVICES_MATH_MATH_SERVICE_H_