blob: b70dd1b44f02077cec0b09c1adfe2a21d14e17b4 [file] [log] [blame]
Tom Cherry11a3aee2017-08-03 12:54:07 -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
Tom Cherry9949ec52019-05-16 16:54:49 -070017#pragma once
Tom Cherry11a3aee2017-08-03 12:54:07 -070018
Tom Cherrybbcbc2f2019-06-10 11:08:01 -070019// The implementation of this file has moved to android-base. This file remains since historically,
20// these classes were a part of init.
21
Jiyong Park8fd64c82019-05-31 03:43:34 +090022#include <android-base/result.h>
Tom Cherry11a3aee2017-08-03 12:54:07 -070023
Jiyong Park8fd64c82019-05-31 03:43:34 +090024using android::base::ErrnoError;
Tom Cherryf4db2aa2019-06-14 14:54:02 -070025using android::base::ErrnoErrorf;
Jiyong Park8fd64c82019-05-31 03:43:34 +090026using android::base::Error;
Tom Cherryf4db2aa2019-06-14 14:54:02 -070027using android::base::Errorf;
Jiyong Park8fd64c82019-05-31 03:43:34 +090028using android::base::Result;
29using android::base::ResultError;