forked from OSchip/llvm-project
25 lines
562 B
C++
25 lines
562 B
C++
|
//===-- Connection.cpp ------------------------------------------*- C++ -*-===//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
// C Includes
|
||
|
// C++ Includes
|
||
|
// Other libraries and framework includes
|
||
|
// Project includes
|
||
|
#include "lldb/Core/Connection.h"
|
||
|
|
||
|
using namespace lldb_private;
|
||
|
|
||
|
Connection::Connection ()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
Connection::~Connection ()
|
||
|
{
|
||
|
}
|