Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-10 08:36:27

0001 //==--- AbstractTypeReader.h - Abstract deserialization for types ---------===//
0002 //
0003 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
0004 // See https://llvm.org/LICENSE.txt for license information.
0005 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
0006 //
0007 //===----------------------------------------------------------------------===//
0008 
0009 #ifndef LLVM_CLANG_AST_ABSTRACTTYPEREADER_H
0010 #define LLVM_CLANG_AST_ABSTRACTTYPEREADER_H
0011 
0012 #include "clang/AST/AbstractBasicReader.h"
0013 #include "clang/AST/DeclObjC.h"
0014 #include "clang/AST/Type.h"
0015 
0016 namespace clang {
0017 namespace serialization {
0018 
0019 // template <class PropertyReader>
0020 // class AbstractTypeReader {
0021 // public:
0022 //   AbstractTypeReader(PropertyReader &W);
0023 //   QualType read(Type::TypeClass kind);
0024 // };
0025 //
0026 // The actual class is auto-generated; see ClangASTPropertiesEmitter.cpp.
0027 #include "clang/AST/AbstractTypeReader.inc"
0028 
0029 } // end namespace serialization
0030 } // end namespace clang
0031 
0032 #endif