2015-02-07 04:30:52 +08:00
|
|
|
//===- PDBInterfaceAnchors.h - defines class anchor funcions ----*- C++ -*-===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2015-02-07 04:30:52 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Class anchors are necessary per the LLVM Coding style guide, to ensure that
|
|
|
|
// the vtable is only generated in this object file, and not in every object
|
|
|
|
// file that incldues the corresponding header.
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/DebugInfo/PDB/IPDBDataStream.h"
|
2018-10-23 16:14:53 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBFrameData.h"
|
2018-03-14 01:46:06 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBInjectedSource.h"
|
2015-02-07 04:30:52 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
|
2015-02-13 17:09:03 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
|
2018-03-22 12:08:15 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBSectionContrib.h"
|
2015-02-07 04:30:52 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBSession.h"
|
2017-11-16 22:33:09 +08:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBTable.h"
|
2015-02-07 04:30:52 +08:00
|
|
|
|
|
|
|
using namespace llvm;
|
2016-05-05 04:32:13 +08:00
|
|
|
using namespace llvm::pdb;
|
2015-02-07 04:30:52 +08:00
|
|
|
|
2016-11-24 07:16:32 +08:00
|
|
|
IPDBSession::~IPDBSession() = default;
|
2015-02-07 04:30:52 +08:00
|
|
|
|
2016-11-24 07:16:32 +08:00
|
|
|
IPDBDataStream::~IPDBDataStream() = default;
|
2015-02-07 04:30:52 +08:00
|
|
|
|
2016-11-24 07:16:32 +08:00
|
|
|
IPDBRawSymbol::~IPDBRawSymbol() = default;
|
2015-02-07 04:30:52 +08:00
|
|
|
|
2016-11-24 07:16:32 +08:00
|
|
|
IPDBLineNumber::~IPDBLineNumber() = default;
|
2017-11-16 22:33:09 +08:00
|
|
|
|
|
|
|
IPDBTable::~IPDBTable() = default;
|
2018-03-14 01:46:06 +08:00
|
|
|
|
|
|
|
IPDBInjectedSource::~IPDBInjectedSource() = default;
|
2018-03-22 12:08:15 +08:00
|
|
|
|
|
|
|
IPDBSectionContrib::~IPDBSectionContrib() = default;
|
2018-10-23 16:14:53 +08:00
|
|
|
|
|
|
|
IPDBFrameData::~IPDBFrameData() = default;
|