blob: 238ba74b10ffcb117068b9ec09c4da6bd0695ac7 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// This is an example of a tool. See </src/example_tool.cc>.
#ifndef DEBUGD_SRC_EXAMPLE_TOOL_H_
#define DEBUGD_SRC_EXAMPLE_TOOL_H_
#include <string>
#include <base/macros.h>
namespace debugd {
class ExampleTool {
public:
ExampleTool() = default;
~ExampleTool() = default;
std::string GetExample();
private:
DISALLOW_COPY_AND_ASSIGN(ExampleTool);
};
} // namespace debugd
#endif // DEBUGD_SRC_EXAMPLE_TOOL_H_