brintos

brintos / llvm-project-archived public Read only

0
0
Text · 798 B · a05bf22 Raw
25 lines · c
1//===-- forward-declarations.h ----------------------------------*- C++ -*-===//2//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-exception6//7//===----------------------------------------------------------------------===//8 9#ifndef LLDB_SOURCE_PLUGINS_TRACE_INTEL_PT_FORWARD_DECLARATIONS_H10#define LLDB_SOURCE_PLUGINS_TRACE_INTEL_PT_FORWARD_DECLARATIONS_H11 12#include <memory>13 14namespace lldb_private {15namespace trace_intel_pt {16 17class TraceIntelPT;18class ThreadDecoder;19 20using TraceIntelPTSP = std::shared_ptr<TraceIntelPT>;21 22} // namespace trace_intel_pt23} // namespace lldb_private24#endif // LLDB_SOURCE_PLUGINS_TRACE_INTEL_PT_FORWARD_DECLARATIONS_H25