blob: f6fae45fa8c0bd4bd55712ec7977238a7ad9029f [file] [log] [blame]
Chris Masonec1e50412011-06-07 13:04:53 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
Paul Stewart25379f12011-05-26 06:41:38 -07002// 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_