Created header file to include minimal forward references needed for
[oota-llvm.git] / include / llvm / Bitcode / SerializationFwd.h
1 //==- SerializationFwd.h - Forward references for Serialization ---*- C++ -*-=//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by Ted Kremenek and is distributed under the
6 // University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file provides forward references for bitcode object serialization.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_BITCODE_SERIALIZE_FWD
15 #define LLVM_BITCODE_SERIALIZE_FWD
16
17 namespace llvm {
18
19 class Serializer;
20 class Deserializer;  
21 template <typename T> struct SerializeTrait;  
22
23 } // end namespace llvm
24
25 #endif