1 //===-- ModuleChild.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/Core/ModuleChild.h" 11 12 using namespace lldb_private; 13 ModuleChild(const lldb::ModuleSP & module_sp)14ModuleChild::ModuleChild (const lldb::ModuleSP &module_sp) : 15 m_module_wp (module_sp) 16 { 17 } 18 ModuleChild(const ModuleChild & rhs)19ModuleChild::ModuleChild (const ModuleChild& rhs) : 20 m_module_wp(rhs.m_module_wp) 21 { 22 } 23 ~ModuleChild()24ModuleChild::~ModuleChild() 25 { 26 } 27 28 const ModuleChild& operator =(const ModuleChild & rhs)29ModuleChild::operator= (const ModuleChild& rhs) 30 { 31 if (this != &rhs) 32 m_module_wp = rhs.m_module_wp; 33 return *this; 34 } 35 36 lldb::ModuleSP GetModule() const37ModuleChild::GetModule () const 38 { 39 return m_module_wp.lock(); 40 } 41 42 void SetModule(const lldb::ModuleSP & module_sp)43ModuleChild::SetModule (const lldb::ModuleSP &module_sp) 44 { 45 m_module_wp = module_sp; 46 } 47