The open source OpenXR runtime
1// Copyright 2022, Qualcomm Innovation Center, Inc.
2// SPDX-License-Identifier: BSL-1.0
3// Author: Jarvis Huang
4// Inline implementations: do not include on its own!
5
6#pragma once
7
8namespace wrap {
9namespace java::io {
10
11inline std::string File::getAbsolutePath() const {
12 assert(!isNull());
13 return object().call<std::string>(Meta::data().getAbsolutePath);
14}
15
16} // namespace java::io
17} // namespace wrap