blob: f6fae45fa8c0bd4bd55712ec7977238a7ad9029f [file] [log] [blame]
// Copyright (c) 2011 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.
#ifndef SHILL_IO_HANDLER_
#define SHILL_IO_HANDLER_
namespace shill {
struct InputData {
unsigned char *buf;
size_t len;
};
class IOInputHandler {
public:
IOInputHandler() {}
virtual ~IOInputHandler() {}
};
} // namespace shill
#endif // SHILL_IO_HANDLER_