diff options
Diffstat (limited to 'src/conduit.h')
-rw-r--r-- | src/conduit.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/conduit.h b/src/conduit.h new file mode 100644 index 0000000..4598bd1 --- /dev/null +++ b/src/conduit.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2007 Xagasoft, All rights reserved. | ||
3 | * | ||
4 | * This file is part of the libbu++ library and is released under the | ||
5 | * terms of the license contained in the file LICENSE. | ||
6 | */ | ||
7 | |||
8 | #ifndef BU_CONDUIT_H | ||
9 | #define BU_CONDUIT_H | ||
10 | |||
11 | #include "bu/stream.h" | ||
12 | #include "bu/fstring.h" | ||
13 | |||
14 | namespace Bu | ||
15 | { | ||
16 | /** | ||
17 | * Simple inter-thread communication stream. This acts like a pair of | ||
18 | * pipes for stream communication between any two things, but without the | ||
19 | * use of pipes, making this a bad choice for IPC. | ||
20 | */ | ||
21 | class Conduit : public Stream | ||
22 | { | ||
23 | }; | ||
24 | } | ||
25 | |||
26 | #endif | ||