Skip to content

Commit

Permalink
add method
Browse files Browse the repository at this point in the history
  • Loading branch information
larshp committed Aug 22, 2023
1 parent 4eef813 commit cec00bb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/bcs/cl_bcs_convert.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,18 @@ CLASS cl_bcs_convert DEFINITION PUBLIC.

CLASS-METHODS xstring_to_solix
IMPORTING
iv_xstring TYPE xstring
iv_xstring TYPE xstring
RETURNING
VALUE(et_solix) TYPE solix_tab.

CLASS-METHODS raw_to_string
IMPORTING
it_soli TYPE soli_tab
RETURNING
VALUE(ev_string) TYPE string
RAISING
cx_bcs.

ENDCLASS.

CLASS cl_bcs_convert IMPLEMENTATION.
Expand All @@ -25,4 +33,8 @@ CLASS cl_bcs_convert IMPLEMENTATION.
ASSERT 1 = 'todo'.
ENDMETHOD.

METHOD raw_to_string.
ASSERT 1 = 'todo'.
ENDMETHOD.

ENDCLASS.
2 changes: 2 additions & 0 deletions src/http/cl_http_server.clas.abap
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ CLASS cl_http_server DEFINITION PUBLIC CREATE PRIVATE.
INTERFACES if_http_server.

ALIASES co_enabled FOR if_http_server~co_enabled.
ALIASES append_field_url FOR if_http_server~append_field_url.

CLASS-DATA c_compression_supported TYPE i.
DATA m_protocol_version TYPE string READ-ONLY.
Expand All @@ -14,6 +15,7 @@ CLASS cl_http_server DEFINITION PUBLIC CREATE PRIVATE.
port TYPE string
out_protocol TYPE string
host TYPE string.

ENDCLASS.

CLASS cl_http_server IMPLEMENTATION.
Expand Down

0 comments on commit cec00bb

Please sign in to comment.