aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/Bitcode/SerializationFwd.h
blob: 6569267ad902e2efe02c5ac339e8e2da5d2dacac (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
//==- 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;  

} // end namespace llvm

#endif