abap2xlsx/src/zcl_excel_reader_2007.clas.locals_def.abap
Ivan Femia f8b0e354db Moving to abapGit
First commit to abapGit
2017-05-16 22:22:30 +02:00

13 lines
409 B
ABAP

*"* use this source file for any type declarations (class
*"* definitions, interfaces or data types) you need for method
*"* implementation or private method's signature
*
class lcl_zip_archive definition abstract.
public section.
methods read abstract
importing i_filename type csequence
returning value(r_content) type xstring " Remember copy-on-write!
raising zcx_excel.
endclass.