blob: 3e825bb2c3a6e2500ac93ff4866875065d771f7b [file] [log] [blame]
Jim Ingham22777012010-09-23 02:01:19 +00001//===-- CPPLanguageRuntime.cpp -------------------------------------------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "lldb/Target/CPPLanguageRuntime.h"
11#include "lldb/Core/PluginManager.h"
12
13using namespace lldb;
14using namespace lldb_private;
15
16//----------------------------------------------------------------------
17// Destructor
18//----------------------------------------------------------------------
19CPPLanguageRuntime::~CPPLanguageRuntime()
20{
21}
22
23CPPLanguageRuntime::CPPLanguageRuntime (Process *process) :
24 LanguageRuntime (process)
25{
26
27}