1283625Sdim//===- PDBInterfaceAnchors.h - defines class anchor funcions ----*- C++ -*-===//
2283625Sdim//
3283625Sdim//                     The LLVM Compiler Infrastructure
4283625Sdim//
5283625Sdim// This file is distributed under the University of Illinois Open Source
6283625Sdim// License. See LICENSE.TXT for details.
7283625Sdim//
8283625Sdim//===----------------------------------------------------------------------===//
9283625Sdim// Class anchors are necessary per the LLVM Coding style guide, to ensure that
10283625Sdim// the vtable is only generated in this object file, and not in every object
11283625Sdim// file that incldues the corresponding header.
12283625Sdim//===----------------------------------------------------------------------===//
13283625Sdim
14283625Sdim#include "llvm/DebugInfo/PDB/IPDBDataStream.h"
15283625Sdim#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
16283625Sdim#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
17283625Sdim#include "llvm/DebugInfo/PDB/IPDBSession.h"
18283625Sdim#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
19283625Sdim
20283625Sdimusing namespace llvm;
21283625Sdim
22283625SdimIPDBSession::~IPDBSession() {}
23283625Sdim
24283625SdimIPDBDataStream::~IPDBDataStream() {}
25283625Sdim
26283625SdimIPDBRawSymbol::~IPDBRawSymbol() {}
27283625Sdim
28283625SdimIPDBLineNumber::~IPDBLineNumber() {}
29