2015-05-27 14:44:32 -04:00
|
|
|
//===- PDBInterfaceAnchors.h - defines class anchor funcions ----*- C++ -*-===//
|
|
|
|
|
//
|
2019-08-20 16:50:12 -04: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-05-27 14:44:32 -04: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"
|
2019-01-19 05:01:25 -05:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBFrameData.h"
|
2018-07-28 06:51:19 -04:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBInjectedSource.h"
|
2015-05-27 14:44:32 -04:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
|
|
|
|
|
#include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
|
2018-07-28 06:51:19 -04:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBSectionContrib.h"
|
2015-05-27 14:44:32 -04:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBSession.h"
|
2017-12-18 15:10:56 -05:00
|
|
|
#include "llvm/DebugInfo/PDB/IPDBTable.h"
|
2015-05-27 14:44:32 -04:00
|
|
|
|
|
|
|
|
using namespace llvm;
|
2016-07-23 16:41:05 -04:00
|
|
|
using namespace llvm::pdb;
|
2015-05-27 14:44:32 -04:00
|
|
|
|
2017-01-02 14:17:04 -05:00
|
|
|
IPDBSession::~IPDBSession() = default;
|
2015-05-27 14:44:32 -04:00
|
|
|
|
2017-01-02 14:17:04 -05:00
|
|
|
IPDBDataStream::~IPDBDataStream() = default;
|
2015-05-27 14:44:32 -04:00
|
|
|
|
2017-01-02 14:17:04 -05:00
|
|
|
IPDBRawSymbol::~IPDBRawSymbol() = default;
|
2015-05-27 14:44:32 -04:00
|
|
|
|
2017-01-02 14:17:04 -05:00
|
|
|
IPDBLineNumber::~IPDBLineNumber() = default;
|
2017-12-18 15:10:56 -05:00
|
|
|
|
|
|
|
|
IPDBTable::~IPDBTable() = default;
|
2018-07-28 06:51:19 -04:00
|
|
|
|
|
|
|
|
IPDBInjectedSource::~IPDBInjectedSource() = default;
|
|
|
|
|
|
|
|
|
|
IPDBSectionContrib::~IPDBSectionContrib() = default;
|
2019-01-19 05:01:25 -05:00
|
|
|
|
|
|
|
|
IPDBFrameData::~IPDBFrameData() = default;
|