blob: 88f812b51e57f8a696828a0db991250f64bacc20 [file] [log] [blame]
Paul Stewart25379f12011-05-26 06:41:38 -07001// Copyright (c) 2009 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 SHILL_IO_HANDLER_
6#define SHILL_IO_HANDLER_
7
8namespace shill {
9
10struct InputData {
11 unsigned char *buf;
12 size_t len;
13};
14
15class IOInputHandler {
16 public:
17 IOInputHandler() {}
18 virtual ~IOInputHandler() {}
19};
20
21} // namespace shill
22
23#endif // SHILL_IO_HANDLER_