blob: 8bed01be88397f0b2f231e7b0710c67b409e25b3 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- Baton.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/Baton.h"
11
12// C Includes
13// C++ Includes
14// Other libraries and framework includes
15// Project includes
16#include "lldb/Core/Stream.h"
17
18using namespace lldb;
19using namespace lldb_private;
20
21void
22Baton::GetDescription (Stream *s, lldb::DescriptionLevel level) const
23{
Chris Lattner24943d22010-06-08 16:52:24 +000024}