blob: 41964144e57792cc257fb84f240719301ece330b [file] [log] [blame]
// Protocol Buffers - Google's data interchange format
// Copyright 2023 Google LLC. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
#ifndef GOOGLE_UPB_UPB_GENERATOR_REFLECTION_NAMES_H__
#define GOOGLE_UPB_UPB_GENERATOR_REFLECTION_NAMES_H__
#include <string>
#include "absl/strings/string_view.h"
// Must be last.
#include "upb/port/def.inc"
namespace upb::generator {
// These are the publicly visible symbols defined in foo.upbdefs.h.
// const upb_MessageDef* <GetMessage>(upb_DefPool *s);
// extern const _upb_DefPool_Init <File>;
UPBC_API std::string ReflectionGetMessageSymbol(absl::string_view full_name);
UPBC_API std::string ReflectionFileSymbol(absl::string_view filename);
} // namespace upb::generator
#include "upb/port/undef.inc"
#endif // GOOGLE_UPB_UPB_GENERATOR_REFLECTION_NAMES_H__