summaryrefslogtreecommitdiff
path: root/include/libgsi
diff options
context:
space:
mode:
authorDavid Anderson <dvander@google.com>2019-09-24 23:59:22 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-09-24 23:59:22 +0000
commit29eb46ca1d6442af2d181a16e67872741bf6f827 (patch)
treecb2d50c8e7a9724e16d05495b4d29c288978d9f2 /include/libgsi
parentef4513e526b843fafb5316367d8291f327a48722 (diff)
parent83fdeca17d4aeb8a333b61f21a52a793804e0975 (diff)
downloadgsid-29eb46ca1d6442af2d181a16e67872741bf6f827.tar.gz
Merge "Factor GetGsiService into a helper library."
Diffstat (limited to 'include/libgsi')
-rw-r--r--include/libgsi/libgsid.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/libgsi/libgsid.h b/include/libgsi/libgsid.h
new file mode 100644
index 0000000..46f8ef5
--- /dev/null
+++ b/include/libgsi/libgsid.h
@@ -0,0 +1,27 @@
+//
+// Copyright (C) 2019 The Android Open Source Project
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+//
+
+#pragma once
+
+#include <android/gsi/IGsiService.h>
+
+namespace android {
+namespace gsi {
+
+android::sp<IGsiService> GetGsiService();
+
+} // namespace gsi
+} // namespace android