diff options
author | Jim Ingham <jingham@apple.com> | 2010-09-23 02:01:19 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2010-09-23 02:01:19 +0000 |
commit | 2277701c7b826544fb39b5684c4da8c6d590adf2 (patch) | |
tree | 6a53cdfe3086b89fb331c53fa98ae9d24efb12a4 /lldb/source/Target/CPPLanguageRuntime.cpp | |
parent | 19964dbe3bb05aedc65952c7299e4c610ee01579 (diff) | |
download | bcm5719-llvm-2277701c7b826544fb39b5684c4da8c6d590adf2.tar.gz bcm5719-llvm-2277701c7b826544fb39b5684c4da8c6d590adf2.zip |
Committing the skeleton of Language runtime plugin classes.
llvm-svn: 114620
Diffstat (limited to 'lldb/source/Target/CPPLanguageRuntime.cpp')
-rw-r--r-- | lldb/source/Target/CPPLanguageRuntime.cpp | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/lldb/source/Target/CPPLanguageRuntime.cpp b/lldb/source/Target/CPPLanguageRuntime.cpp new file mode 100644 index 00000000000..3e825bb2c3a --- /dev/null +++ b/lldb/source/Target/CPPLanguageRuntime.cpp @@ -0,0 +1,27 @@ +//===-- CPPLanguageRuntime.cpp -------------------------------------------------*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "lldb/Target/CPPLanguageRuntime.h" +#include "lldb/Core/PluginManager.h" + +using namespace lldb; +using namespace lldb_private; + +//---------------------------------------------------------------------- +// Destructor +//---------------------------------------------------------------------- +CPPLanguageRuntime::~CPPLanguageRuntime() +{ +} + +CPPLanguageRuntime::CPPLanguageRuntime (Process *process) : + LanguageRuntime (process) +{ + +}
\ No newline at end of file |