Lars Gullik Bjønnes wrote: > Is the change required basically to replace ofstream with odocfstream? > and update all functions to use this instead? If so I am progressing > nicly with docbook, else I have no clue what I am doing.
Yes, that is it (almost: of course odocfstream should only be used where the file is opened, in the docbook methods it should be odocstream, but I guess you meant that). You only have to take care if single lyx::char_type are written. They need to be written with os.put(), not with operator<< (the latter produces the well known numbers). Georg
