File tree Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Expand file tree Collapse file tree 1 file changed +0
-15
lines changed Original file line number Diff line number Diff line change @@ -905,12 +905,6 @@ class Streams
905
905
* send(...) - Send input to the input channel of the child.
906
906
* communicate(...) - Get the output/error from the child and close the channels
907
907
* from the parent side.
908
- * input() - Get the input channel/File pointer. Can be used for
909
- * customizing the way of sending input to child.
910
- * output() - Get the output channel/File pointer. Usually used
911
- in case of redirection. See piping examples.
912
- * error() - Get the error channel/File pointer. Usually used
913
- in case of redirection.
914
908
*/
915
909
class Popen
916
910
{
@@ -995,15 +989,6 @@ class Popen
995
989
return communicate (nullptr , 0 );
996
990
}
997
991
998
- FILE* input () { return stream_.input (); }
999
- FILE* output () { return stream_.output ();}
1000
- FILE* error () { return stream_.error (); }
1001
-
1002
- // / Stream close APIs
1003
- void close_input () { stream_.input_ .reset (); }
1004
- void close_output () { stream_.output_ .reset (); }
1005
- void close_error () { stream_.error_ .reset (); }
1006
-
1007
992
private:
1008
993
template <typename F, typename ... Args>
1009
994
void init_args (F&& farg, Args&&... args);
You can’t perform that action at this time.
0 commit comments