1 //===- PDBInterfaceAnchors.h - defines class anchor functions ---*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
8 // Class anchors are necessary per the LLVM Coding style guide, to ensure that
9 // the vtable is only generated in this object file, and not in every object
10 // file that includes the corresponding header.
11 //===----------------------------------------------------------------------===//
13 #include "llvm/DebugInfo/PDB/IPDBDataStream.h"
14 #include "llvm/DebugInfo/PDB/IPDBFrameData.h"
15 #include "llvm/DebugInfo/PDB/IPDBInjectedSource.h"
16 #include "llvm/DebugInfo/PDB/IPDBLineNumber.h"
17 #include "llvm/DebugInfo/PDB/IPDBRawSymbol.h"
18 #include "llvm/DebugInfo/PDB/IPDBSectionContrib.h"
19 #include "llvm/DebugInfo/PDB/IPDBSession.h"
20 #include "llvm/DebugInfo/PDB/IPDBTable.h"
23 using namespace llvm::pdb
;
25 IPDBSession::~IPDBSession() = default;
27 IPDBDataStream::~IPDBDataStream() = default;
29 IPDBRawSymbol::~IPDBRawSymbol() = default;
31 IPDBLineNumber::~IPDBLineNumber() = default;
33 IPDBTable::~IPDBTable() = default;
35 IPDBInjectedSource::~IPDBInjectedSource() = default;
37 IPDBSectionContrib::~IPDBSectionContrib() = default;
39 IPDBFrameData::~IPDBFrameData() = default;