blob: dc52e3e83d678d6578642ee5a413e8c3d29b27a5 [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;
Qijiang Fan6bc59e12020-11-11 02:51:06 +090019 ExampleTool(const ExampleTool&) = delete;
20 ExampleTool& operator=(const ExampleTool&) = delete;
21
Ben Chan78f89532014-08-29 09:35:09 -070022 ~ExampleTool() = default;
Elly Jonese0ec6012012-07-17 12:39:51 -040023
Eric Carusoc93a15c2017-04-24 16:15:12 -070024 std::string GetExample();
Elly Jonese0ec6012012-07-17 12:39:51 -040025};
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_