mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-24 02:18:57 +00:00
23 lines
452 B
C
23 lines
452 B
C
|
#ifndef FREESWITCH_PYTHON_H
|
||
|
#define FREESWITCH_PYTHON_H
|
||
|
|
||
|
#include <switch_cpp.h>
|
||
|
|
||
|
|
||
|
class Session : public CoreSession {
|
||
|
private:
|
||
|
public:
|
||
|
Session();
|
||
|
Session(char *uuid);
|
||
|
Session(switch_core_session_t *session);
|
||
|
~Session();
|
||
|
|
||
|
virtual bool begin_allow_threads();
|
||
|
virtual bool end_allow_threads();
|
||
|
virtual void check_hangup_hook();
|
||
|
virtual switch_status_t run_dtmf_callback(void *input, switch_input_type_t itype);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|