aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bitcode/SerializationFwd.h
blob: 772ea7ceba5d44fe47a764dd838386d9138d1df4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//==- SerializationFwd.h - Forward references for Serialization ---*- C++ -*-=//
//
//                     The LLVM Compiler Infrastructure
//
// This file was developed by Ted Kremenek and is distributed under the
// University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file provides forward references for bitcode object serialization.
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_BITCODE_SERIALIZE_FWD
#define LLVM_BITCODE_SERIALIZE_FWD

namespace llvm {

class Serializer;
class Deserializer;  
template <typename T> struct SerializeTrait;  

typedef unsigned SerializedPtrID;

} // end namespace llvm

#endif