1254721Semaste//===-- Connection.cpp ------------------------------------------*- C++ -*-===//
2254721Semaste//
3254721Semaste//                     The LLVM Compiler Infrastructure
4254721Semaste//
5254721Semaste// This file is distributed under the University of Illinois Open Source
6254721Semaste// License. See LICENSE.TXT for details.
7254721Semaste//
8254721Semaste//===----------------------------------------------------------------------===//
9254721Semaste
10254721Semaste// C Includes
11254721Semaste// C++ Includes
12254721Semaste// Other libraries and framework includes
13254721Semaste// Project includes
14254721Semaste#include "lldb/Core/Connection.h"
15254721Semaste
16254721Semasteusing namespace lldb_private;
17254721Semaste
18254721SemasteConnection::Connection ()
19254721Semaste{
20254721Semaste}
21254721Semaste
22254721SemasteConnection::~Connection ()
23254721Semaste{
24254721Semaste}
25