blob: 1f881b7d83c7b689c009185c3c60a0f3224eff91 [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GARNET_BIN_TRACE_COMMANDS_LIST_CATEGORIES_H_
#define GARNET_BIN_TRACE_COMMANDS_LIST_CATEGORIES_H_
#include "garnet/bin/trace/command.h"
namespace tracing {
class ListCategoriesCommand : public CommandWithController {
public:
static Info Describe();
explicit ListCategoriesCommand(sys::ComponentContext* context);
protected:
void Start(const fxl::CommandLine& command_line) override;
};
} // namespace tracing
#endif // GARNET_BIN_TRACE_COMMANDS_LIST_CATEGORIES_H_