blob: d694b7702b3d21b94664dc95d214a210cc1dfd1a [file] [log] [blame]
Jim Ingham642036f2010-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"
Jim Inghamb66cd072010-09-28 01:25:32 +000012#include "lldb/Target/ExecutionContext.h"
Jim Ingham642036f2010-09-23 02:01:19 +000013
14using namespace lldb;
15using namespace lldb_private;
16
17//----------------------------------------------------------------------
18// Destructor
19//----------------------------------------------------------------------
20CPPLanguageRuntime::~CPPLanguageRuntime()
21{
22}
23
24CPPLanguageRuntime::CPPLanguageRuntime (Process *process) :
25 LanguageRuntime (process)
26{
27
Jim Inghamb66cd072010-09-28 01:25:32 +000028}
29
30bool
31CPPLanguageRuntime::GetObjectDescription (Stream &str, ValueObject &object, ExecutionContextScope *exe_scope)
32{
33 // C++ has no generic way to do this.
34 return false;
35}