PageRenderTime 70ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/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
Possible License(s): BSD-3-Clause
  1. #ifndef __MORDOR_PIPE_STREAM_H__
  2. #define __MORDOR_PIPE_STREAM_H__
  3. // Copyright (c) 2009 - Mozy, Inc.
  4. #include <utility>
  5. #include <boost/shared_ptr.hpp>
  6. namespace Mordor {
  7. class Stream;
  8. std::pair<boost::shared_ptr<Stream>, boost::shared_ptr<Stream> >
  9. pipeStream(size_t bufferSize = ~0);
  10. }
  11. #endif