2023-06-15 17:36:52 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2023-05-18 14:00:10 +01:00
|
|
|
#include <string_view>
|
|
|
|
|
2023-07-26 15:31:53 +01:00
|
|
|
namespace oi::detail::headers {
|
2023-05-18 14:00:10 +01:00
|
|
|
|
|
|
|
// These externs are provided by our build system. See resources/CMakeLists.txt
|
2023-08-29 15:08:43 +01:00
|
|
|
extern const std::string_view oi_IntrospectionResult_h;
|
|
|
|
extern const std::string_view oi_IntrospectionResult_inl_h;
|
2023-06-29 13:07:46 +01:00
|
|
|
extern const std::string_view oi_OITraceCode_cpp;
|
2023-08-16 20:40:36 +01:00
|
|
|
extern const std::string_view oi_exporters_ParsedData_h;
|
|
|
|
extern const std::string_view oi_exporters_inst_h;
|
|
|
|
extern const std::string_view oi_result_Element_h;
|
2023-06-26 11:07:44 +01:00
|
|
|
extern const std::string_view oi_types_dy_h;
|
2023-08-16 20:40:36 +01:00
|
|
|
extern const std::string_view oi_types_st_h;
|
2023-05-18 14:00:10 +01:00
|
|
|
|
2023-07-26 15:31:53 +01:00
|
|
|
} // namespace oi::detail::headers
|