blob: 2b0cb37153ed94ffc1b9d6656f201791820d6812 [file] [log] [blame]
Michael Schwartz97dc0f92017-05-08 14:07:14 -07001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "utils.h"
18
19namespace android {
20namespace vintf {
21namespace details {
22
Yifan Hong8640cd12017-05-17 12:02:28 -070023static FileFetcher fetcher;
Michael Schwartz97dc0f92017-05-08 14:07:14 -070024FileFetcher* gFetcher = &fetcher;
25
Yifan Hong8640cd12017-05-17 12:02:28 -070026static PartitionMounter partitionMounter;
27PartitionMounter* gPartitionMounter = &partitionMounter;
Yifan Hong29bb2d42017-09-27 13:28:00 -070028
29static ObjectFactory<RuntimeInfo> runtimeInfoFactory;
30ObjectFactory<RuntimeInfo>* gRuntimeInfoFactory = &runtimeInfoFactory;
31
Michael Schwartz97dc0f92017-05-08 14:07:14 -070032} // namespace details
33} // namespace vintf
34} // namespace android