2012-08-02 08:34:36 -04:00
|
|
|
/*******************************************************************************
|
2011-11-16 02:37:29 -05:00
|
|
|
|
2012-08-02 08:34:36 -04:00
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2011, 2012.
|
2011-11-16 02:37:29 -05:00
|
|
|
|
|
|
|
This file is part of Sortix.
|
|
|
|
|
|
|
|
Sortix is free software: you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
|
|
version.
|
|
|
|
|
|
|
|
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
|
|
details.
|
|
|
|
|
2012-08-02 08:34:36 -04:00
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
2011-11-16 02:37:29 -05:00
|
|
|
|
|
|
|
pipe.h
|
|
|
|
A device with a writing end and a reading end.
|
|
|
|
|
2012-08-02 08:34:36 -04:00
|
|
|
*******************************************************************************/
|
2011-11-16 02:37:29 -05:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef SORTIX_PIPE_H
|
|
|
|
#define SORTIX_PIPE_H
|
|
|
|
|
|
|
|
#include "stream.h"
|
|
|
|
|
|
|
|
namespace Sortix
|
|
|
|
{
|
|
|
|
namespace Pipe
|
|
|
|
{
|
|
|
|
void Init();
|
2012-03-21 19:52:29 -04:00
|
|
|
}
|
2011-11-16 02:37:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|