Skip to content

Commit

Permalink
Test 1
Browse files Browse the repository at this point in the history
  • Loading branch information
maxirmx committed Jun 5, 2024
1 parent 605bde4 commit 7216b65
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions include/sexpp/sexp.h
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,11 @@ class SEXP_PUBLIC_SYMBOL sexp_string_t : public sexp_object_t {
sexp_string_t(void) : with_presentation_hint(false) {}
sexp_string_t(sexp_input_stream_t *sis) { parse(sis); };

~sexp_string_t()
{

}

const bool has_presentation_hint(void) const noexcept { return with_presentation_hint; }
const sexp_simple_string_t &get_string(void) const noexcept { return data_string; }
const sexp_simple_string_t &set_string(const sexp_simple_string_t &ss)
Expand Down

0 comments on commit 7216b65

Please sign in to comment.