Sync with 5.4.2
[deliverable/titan.core.git] / core / Universal_charstring.cc
index a2070229fbc6f91842e3e8743ba13cec27b0d747..4eda2c1e91ddf676b68b5202665b65c87eca86f5 100644 (file)
@@ -1638,6 +1638,14 @@ int UNIVERSAL_CHARSTRING::encode_raw(TTCN_Buffer& p_buf) const
   encode_utf8(p_buf);
   return p_buf.get_len() - len_before;
 }
+
+int UNIVERSAL_CHARSTRING::JSON_encode_negtest_raw(JSON_Tokenizer& p_tok) const
+{
+  TTCN_Buffer tmp_buf;
+  encode_utf8(tmp_buf);
+  p_tok.put_raw_data((const char*)tmp_buf.get_data(), tmp_buf.get_len());
+  return tmp_buf.get_len();
+}
 #endif
 
 
This page took 0.024244 seconds and 5 git commands to generate.