blob: 88f812b51e57f8a696828a0db991250f64bacc20 [file] [log] [blame]
// Copyright (c) 2009 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_