blob: 238ba74b10ffcb117068b9ec09c4da6bd0695ac7 [file] [log] [blame]
Elly Jonese0ec6012012-07-17 12:39:51 -04001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4//
5// This is an example of a tool. See </src/example_tool.cc>.
6
Alex Vakulenko262be3f2014-07-30 15:25:50 -07007#ifndef DEBUGD_SRC_EXAMPLE_TOOL_H_
8#define DEBUGD_SRC_EXAMPLE_TOOL_H_
Elly Jonese0ec6012012-07-17 12:39:51 -04009
10#include <string>
11
Ben Chan657bed82014-09-02 20:40:51 -070012#include <base/macros.h>
Elly Jonese0ec6012012-07-17 12:39:51 -040013
14namespace debugd {
15
16class ExampleTool {
17 public:
Ben Chan78f89532014-08-29 09:35:09 -070018 ExampleTool() = default;
19 ~ExampleTool() = default;
Elly Jonese0ec6012012-07-17 12:39:51 -040020
Eric Carusoc93a15c2017-04-24 16:15:12 -070021 std::string GetExample();
Ben Chana0011d82014-05-13 00:19:29 -070022
Elly Jonese0ec6012012-07-17 12:39:51 -040023 private:
24 DISALLOW_COPY_AND_ASSIGN(ExampleTool);
25};
26
Ben Chana0011d82014-05-13 00:19:29 -070027} // namespace debugd
Elly Jonese0ec6012012-07-17 12:39:51 -040028
Alex Vakulenko262be3f2014-07-30 15:25:50 -070029#endif // DEBUGD_SRC_EXAMPLE_TOOL_H_