mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
9749790ef5
object serialization. llvm-svn: 43352
26 lines
747 B
C++
26 lines
747 B
C++
//==- 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
|