Skip to content
Snippets Groups Projects
Commit f519628a authored by Enrico Granata's avatar Enrico Granata
Browse files

Adding to files that were missing in the previous commit

llvm-svn: 163156
parent 3467d80b
No related branches found
No related tags found
No related merge requests found
//===-- CXXFormatterFunctions.h------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_CXXFormatterFunctions_h_
#define liblldb_CXXFormatterFunctions_h_
#include "lldb/lldb-forward.h"
namespace lldb_private {
namespace formatters
{
bool
CodeRunning_Fetcher (ValueObject &valobj,
const char* target_type,
const char* selector,
uint64_t &value);
template<bool name_entries>
bool
NSDictionary_SummaryProvider (ValueObject& valobj, Stream& stream);
bool
NSArray_SummaryProvider (ValueObject& valobj, Stream& stream);
template<bool needs_at>
bool
NSData_SummaryProvider (ValueObject& valobj, Stream& stream);
bool
NSNumber_SummaryProvider (ValueObject& valobj, Stream& stream);
bool
NSString_SummaryProvider (ValueObject& valobj, Stream& stream);
extern template bool
NSDictionary_SummaryProvider<true> (ValueObject&, Stream&) ;
extern template bool
NSDictionary_SummaryProvider<false> (ValueObject&, Stream&) ;
extern template bool
NSData_SummaryProvider<true> (ValueObject&, Stream&) ;
extern template bool
NSData_SummaryProvider<false> (ValueObject&, Stream&) ;
}
}
#endif
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment