1 /*
2  * Copyright (C) 2021 Huawei Device Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #include "net_call_base.h"
17 
18 #include "call_manager_errors.h"
19 
20 namespace OHOS {
21 namespace Telephony {
NetCallBase()22 NetCallBase::NetCallBase() {}
23 
StartConference()24 int32_t NetCallBase::StartConference()
25 {
26     return TELEPHONY_SUCCESS;
27 }
28 
JoinConference()29 int32_t NetCallBase::JoinConference()
30 {
31     return TELEPHONY_SUCCESS;
32 }
33 
KickOutConference()34 int32_t NetCallBase::KickOutConference()
35 {
36     return TELEPHONY_SUCCESS;
37 }
38 
LeaveConference()39 int32_t NetCallBase::LeaveConference()
40 {
41     return TELEPHONY_SUCCESS;
42 }
43 
GetNetCallType()44 int32_t NetCallBase::GetNetCallType()
45 {
46     return TELEPHONY_SUCCESS;
47 }
48 
ChangeNetCallType()49 int32_t NetCallBase::ChangeNetCallType()
50 {
51     return TELEPHONY_SUCCESS;
52 }
53 } // namespace Telephony
54 } // namespace OHOS
55