/mordor/streams/pipe.h
http://github.com/mozy/mordor · C Header · 18 lines · 10 code · 7 blank · 1 comment · 0 complexity · 1cde9375186e164b29b5358dd65b29c7 MD5 · raw file
- #ifndef __MORDOR_PIPE_STREAM_H__
- #define __MORDOR_PIPE_STREAM_H__
- // Copyright (c) 2009 - Mozy, Inc.
- #include <utility>
- #include <boost/shared_ptr.hpp>
- namespace Mordor {
- class Stream;
- std::pair<boost::shared_ptr<Stream>, boost::shared_ptr<Stream> >
- pipeStream(size_t bufferSize = ~0);
- }
- #endif