blob: 0b3c1482d58b411b9c9fb20eb0c9956d979ae62e [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
7#ifndef EXAMPLE_TOOL_H
8#define EXAMPLE_TOOL_H
9
10#include <string>
11
12#include <base/basictypes.h>
13#include <dbus-c++/dbus.h>
14
15namespace debugd {
16
17class ExampleTool {
18 public:
19 ExampleTool();
20 ~ExampleTool();
21
22 std::string GetExample(DBus::Error& error); // NOLINT
23 private:
24 DISALLOW_COPY_AND_ASSIGN(ExampleTool);
25};
26
27}; // namespace debugd
28
29#endif // !EXAMPLE_TOOL_H