├── .gitignore ├── BinaryReader.cpp ├── BinaryReader.hpp ├── BinaryWriter.cpp ├── BinaryWriter.hpp ├── Exceptions.hpp ├── MemoryStream.cpp ├── MemoryStream.hpp ├── NamedPipeServerStream.cpp ├── NamedPipeServerStream.hpp ├── PipeStream.cpp ├── PipeStream.hpp ├── README.md ├── SafeHandle.hpp └── Stream.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/.gitignore -------------------------------------------------------------------------------- /BinaryReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/BinaryReader.cpp -------------------------------------------------------------------------------- /BinaryReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/BinaryReader.hpp -------------------------------------------------------------------------------- /BinaryWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/BinaryWriter.cpp -------------------------------------------------------------------------------- /BinaryWriter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/BinaryWriter.hpp -------------------------------------------------------------------------------- /Exceptions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/Exceptions.hpp -------------------------------------------------------------------------------- /MemoryStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/MemoryStream.cpp -------------------------------------------------------------------------------- /MemoryStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/MemoryStream.hpp -------------------------------------------------------------------------------- /NamedPipeServerStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/NamedPipeServerStream.cpp -------------------------------------------------------------------------------- /NamedPipeServerStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/NamedPipeServerStream.hpp -------------------------------------------------------------------------------- /PipeStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/PipeStream.cpp -------------------------------------------------------------------------------- /PipeStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/PipeStream.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PipeStream 2 | A C++ wrapper for windows pipes. 3 | -------------------------------------------------------------------------------- /SafeHandle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/SafeHandle.hpp -------------------------------------------------------------------------------- /Stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/PipeStream/HEAD/Stream.hpp --------------------------------------------------------------------------------