Beispiel #1
0
 def convert( inputFile, outputFile ):
     """Convert the given input file to whatever type of file the outputFile is."""
     c = WriterDocument()
     c.open( inputFile )
     c.refresh()
     c.saveAs( outputFile )
     c.close()