2014-06-21 118 views
1

我想在我的應用程序中使用Cling作爲嵌入式C++解釋器。目前它的設計是爲了獲得控制檯輸入並提供輸出。如何改變它以嵌入 - 獲取輸入流並提供可在我的應用程序中使用的輸出流?嵌入式C++解釋器?

回答

0
[cling$] .help 
... 
    .> <filename>  - Redirect command to a given file 
    '>' or '1>'  - Redirects the stdout stream only 
    '2>'   - Redirects the stderr stream only 
    '&>' (or '2>&1')  - Redirects both stdout and stderr 
    '>>'   - Appends to the given file 

這是如何重定向執行結果的流。