llvm/lldb/source/Commands/CommandOptionArgumentTable.cpp

//===-- CommandOptionArgumentTable.cpp ------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/Interpreter/CommandOptionArgumentTable.h"
#include "lldb/DataFormatters/FormatManager.h"
#include "lldb/Target/Language.h"
#include "lldb/Utility/StreamString.h"

usingnamespacelldb;
usingnamespacelldb_private;

namespace lldb_private {
llvm::StringRef RegisterNameHelpTextCallback() {}

llvm::StringRef BreakpointIDHelpTextCallback() {}

llvm::StringRef BreakpointIDRangeHelpTextCallback() {}

llvm::StringRef BreakpointNameHelpTextCallback() {}

llvm::StringRef GDBFormatHelpTextCallback() {}

llvm::StringRef FormatHelpTextCallback() {}

llvm::StringRef LanguageTypeHelpTextCallback() {}

llvm::StringRef SummaryStringHelpTextCallback() {}

llvm::StringRef ExprPathHelpTextCallback() {}

llvm::StringRef arch_helper() {}

template <int I> struct TableValidator : TableValidator<I + 1> {};

template <> struct TableValidator<eArgTypeLastArg> {};

TableValidator<0> validator;

} // namespace lldb_private