blob: f0d695c915b14ea3baa8b946b11eeff1e5c3dd4a [file] [log] [blame]
zhihuang38ede132017-06-15 12:52:32 -07001/*
2 * Copyright 2017 The WebRTC project authors. All Rights Reserved.
3 *
4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
9 */
10
Steve Anton10542f22019-01-11 09:11:00 -080011#ifndef CALL_CALL_FACTORY_H_
12#define CALL_CALL_FACTORY_H_
zhihuang38ede132017-06-15 12:52:32 -070013
Steve Anton10542f22019-01-11 09:11:00 -080014#include "api/call/call_factory_interface.h"
Yves Gerey3e707812018-11-28 16:47:49 +010015#include "call/call.h"
16#include "call/call_config.h"
zhihuang38ede132017-06-15 12:52:32 -070017
18namespace webrtc {
19
20class CallFactory : public CallFactoryInterface {
21 ~CallFactory() override {}
22
Niels Möller8366e172018-02-14 12:20:13 +010023 Call* CreateCall(const CallConfig& config) override;
zhihuang38ede132017-06-15 12:52:32 -070024};
25
26} // namespace webrtc
27
Steve Anton10542f22019-01-11 09:11:00 -080028#endif // CALL_CALL_FACTORY_H_