diff options
Diffstat (limited to 'modules/io/fd_unix/fd_unix.h')
-rw-r--r-- | modules/io/fd_unix/fd_unix.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/modules/io/fd_unix/fd_unix.h b/modules/io/fd_unix/fd_unix.h new file mode 100644 index 000000000..4767306da --- /dev/null +++ b/modules/io/fd_unix/fd_unix.h @@ -0,0 +1,21 @@ +/************************************************* +* Pipe I/O for Unix Header File * +* (C) 1999-2007 Jack Lloyd * +*************************************************/ + +#ifndef BOTAN_EXT_PIPE_UNIXFD_H__ +#define BOTAN_EXT_PIPE_UNIXFD_H__ + +#include <botan/pipe.h> + +namespace Botan { + +/************************************************* +* Unix I/O Operators for Pipe * +*************************************************/ +int operator<<(int, Pipe&); +int operator>>(int, Pipe&); + +} + +#endif |