blob: 83c3bda8833b4aea6f6c1db31097451b34e64bb7 [file] [log] [blame]
Elly Jones0b6bd182012-02-14 18:24:22 -05001// 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#ifndef DEBUG_LOGS_TOOL_H
6#define DEBUG_LOGS_TOOL_H
7
8#include <string>
9
10#include <base/basictypes.h>
11#include <dbus-c++/dbus.h>
12
13namespace debugd {
14
15class DebugLogsTool {
16 public:
17 DebugLogsTool();
18 ~DebugLogsTool();
19
20 void GetDebugLogs(const DBus::FileDescriptor& fd, DBus::Error& error);
21 private:
22 DISALLOW_COPY_AND_ASSIGN(DebugLogsTool);
23};
24
25}; // namespace debugd
26
27#endif // DEBUG_LOGS_TOOL_H