aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Bitcode/SerializationFwd.h
blob: f15683fb4ae218c8c5d6c59343aaaa69e8d4db83 (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 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