README 778 B

1234567891011121314151617181920212223242526
  1. Orcus is a library that provides a collection of standalone file
  2. processing filters. It is currently focused on providing filters
  3. for spreadsheet documents, but filters for other productivity
  4. application types (such as wordprocessor and presentation) are
  5. in consideration.
  6. The library currently includes the following import filters:
  7. Microsoft Excel 2007 XML
  8. Microsoft Excel 2003 XML
  9. Open Document Spreadsheet
  10. Plain Text
  11. Gnumeric XML
  12. Generic XML
  13. The library also includes low-level parsers for the following:
  14. CSV
  15. CSS
  16. XML
  17. JSON
  18. These parsers are all implemented as C++ templates and require a
  19. handler class passed as a template argument so that the handler class
  20. receives various callbacks from the parser as the file is being parsed.