1 /*
2  * Copyright (c) 2023 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 "video_capture_range_adapter_impl.h"
17 
18 namespace OHOS::NWeb {
19 
GetMin()20 double VideoCaptureRangeAdapterImpl::GetMin()
21 {
22     return 0.0;
23 }
24 
GetMax()25 double VideoCaptureRangeAdapterImpl::GetMax()
26 {
27     return 0.0;
28 }
29 
GetStep()30 double VideoCaptureRangeAdapterImpl::GetStep()
31 {
32     return 0.0;
33 }
34 
GetCurrent()35 double VideoCaptureRangeAdapterImpl::GetCurrent()
36 {
37     return 0.0;
38 }
39 
SetMin(double min)40 void VideoCaptureRangeAdapterImpl::SetMin(double min)
41 {
42 }
43 
SetMax(double max)44 void VideoCaptureRangeAdapterImpl::SetMax(double max)
45 {
46 }
47 
SetStep(double step)48 void VideoCaptureRangeAdapterImpl::SetStep(double step)
49 {
50 }
51 
SetCurrent(double current)52 void VideoCaptureRangeAdapterImpl::SetCurrent(double current)
53 {
54 }
55 
56 } // namespace OHOS::NWeb
57