aboutsummaryrefslogtreecommitdiffhomepage
path: root/io.h
diff options
context:
space:
mode:
authorGravatar Cheer Xiao <xiaqqaix@gmail.com>2013-01-01 01:11:46 +0800
committerGravatar Cheer Xiao <xiaqqaix@gmail.com>2013-01-17 14:54:18 +0800
commit146a3530859ebade88d032814bdf049dcff61bfb (patch)
tree6ab090c7f30d3e1e05825e83ae9e5ee67145d827 /io.h
parent214ef3dd0ba3cce94edaccc5170ee5fe435ebc38 (diff)
rename enum io_mode -> io_mode_t; make io_data_t::io_mode that type
Diffstat (limited to 'io.h')
-rw-r--r--io.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/io.h b/io.h
index faea6a0c..f9e2c7f5 100644
--- a/io.h
+++ b/io.h
@@ -8,7 +8,7 @@ using std::tr1::shared_ptr;
/**
Describes what type of IO operation an io_data_t represents
*/
-enum io_mode
+enum io_mode_t
{
IO_FILE, IO_PIPE, IO_FD, IO_BUFFER, IO_CLOSE
};
@@ -26,7 +26,7 @@ private:
public:
/** Type of redirect */
- int io_mode;
+ io_mode_t io_mode;
/** FD to redirect */
int fd;
@@ -99,7 +99,7 @@ public:
io_data_t() :
out_buffer(),
- io_mode(0),
+ io_mode(IO_FILE),
fd(0),
param1(),
param2(),