forked from OSchip/llvm-project
19 lines
580 B
C++
19 lines
580 B
C++
//===-- ProcessWindows.h ----------------------------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef liblldb_Plugins_Process_Windows_ProcessWindowsForward_H_
|
|
#define liblldb_Plugins_Process_Windows_ProcessWindowsForward_H_
|
|
|
|
#include <memory>
|
|
|
|
class ProcessWindows;
|
|
|
|
typedef std::shared_ptr<ProcessWindows> ProcessWindowsSP;
|
|
|
|
#endif |