//===-- TestModuleFileExtension.h - Module Extension Tester -----*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_CLANG_FRONTEND_TESTMODULEFILEEXTENSION_H #define LLVM_CLANG_FRONTEND_TESTMODULEFILEEXTENSION_H #include "clang/Serialization/ModuleFileExtension.h" #include "clang/Basic/LLVM.h" #include "llvm/ADT/StringRef.h" #include "llvm/Bitstream/BitstreamReader.h" #include <string> namespace clang { /// A module file extension used for testing purposes. class TestModuleFileExtension : public llvm::RTTIExtends<TestModuleFileExtension, ModuleFileExtension> { … }; } // end namespace clang #endif // LLVM_CLANG_FRONTEND_TESTMODULEFILEEXTENSION_H