mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-23 15:25:35 +08:00
18 lines
482 B
C++
18 lines
482 B
C++
// SPDX-FileCopyrightText: Copyright (C) 2015 swift Project Community / Contributors
|
|
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-swift-pilot-client-1
|
|
|
|
//! \file
|
|
|
|
#ifndef SWIFT_CORE_REGISTERMETADATA_H
|
|
#define SWIFT_CORE_REGISTERMETADATA_H
|
|
|
|
#include "core/swiftcoreexport.h"
|
|
|
|
namespace swift::core
|
|
{
|
|
//! Register all relevant metadata in swift::core
|
|
SWIFT_CORE_EXPORT void registerMetadata();
|
|
} // namespace swift::core
|
|
|
|
#endif // SWIFT_CORE_REGISTERMETADATA_H
|