]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm-project/clang/include/clang/AST/AbstractTypeWriter.h
Merge llvm, clang, compiler-rt, libc++, libunwind, lld, lldb and openmp
[FreeBSD/FreeBSD.git] / contrib / llvm-project / clang / include / clang / AST / AbstractTypeWriter.h
1 //==--- AbstractTypeWriter.h - Abstract serialization for types -----------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8
9 #ifndef CLANG_AST_ABSTRACTTYPEWRITER_H
10 #define CLANG_AST_ABSTRACTTYPEWRITER_H
11
12 #include "clang/AST/Type.h"
13 #include "clang/AST/AbstractBasicWriter.h"
14 #include "clang/AST/DeclObjC.h"
15
16 namespace clang {
17 namespace serialization {
18
19 // template <class PropertyWriter>
20 // class AbstractTypeWriter {
21 // public:
22 //   AbstractTypeWriter(PropertyWriter &W);
23 //   void write(QualType type);
24 // };
25 //
26 // The actual class is auto-generated; see ClangASTPropertiesEmitter.cpp.
27 #include "clang/AST/AbstractTypeWriter.inc"
28
29 } // end namespace serialization
30 } // end namespace clang
31
32 #endif