blob: 6808d788a78e7b5168cb01c7ecb94c83da4bd891 [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>
#include <dbus-c++/dbus.h>
namespace debugd {
class ExampleTool {
public:
ExampleTool() = default;
~ExampleTool() = default;
std::string GetExample(DBus::Error* error);
private:
DISALLOW_COPY_AND_ASSIGN(ExampleTool);
};
} // namespace debugd
#endif // DEBUGD_SRC_EXAMPLE_TOOL_H_