mirror of
https://github.com/jambonz/freeswitch-modules.git
synced 2025-12-19 08:37:44 +00:00
10 lines
191 B
C++
10 lines
191 B
C++
#ifndef __PARSER_H__
|
|
#define __PARSER_H__
|
|
|
|
#include <string>
|
|
#include <switch_json.h>
|
|
|
|
cJSON* parse_json(switch_core_session_t* session, const std::string& data, std::string& type) ;
|
|
|
|
#endif
|