Dekel Tsur <[EMAIL PROTECTED]> writes:
| On Mon, Sep 04, 2000 at 03:23:23PM +0200, Lars Gullik Bjønnes wrote:
| >
| > I have enabled the new export code in CVS, this will mean that some
| > export targets will not work until fixed. We should try to do that
| > quickly.
|
| I've already made several fixes (including fixing lib/configure so that
| lyxrc.defaults will contains the \converter commands).
Ok, only one thing?
Why implement copy in terms of /usr/bin/cp ?
The C++ code to do this is something like:
ifstream ifs("infile");
ofstream ofs("outfile");
ofs << ifs.rdbuf();
(could be some names that I don't remember by heart)
Lgb