Add another required #include for freestanding .h files.
[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 is distributed under the University of Illinois Open Source
6 // 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 typedef unsigned SerializedPtrID;
24
25 } // end namespace llvm
26
27 #endif