[Freeswitch-branches] [commit] r3489 - freeswitch/branches/jkr888/trunk/src/mod/languages/mod_python

Freeswitch SVN jkr888 at freeswitch.org
Wed Nov 29 17:51:23 EST 2006


Author: jkr888
Date: Wed Nov 29 17:51:21 2006
New Revision: 3489

Added:
   freeswitch/branches/jkr888/trunk/src/mod/languages/mod_python/freeswitch_python.cpp
   freeswitch/branches/jkr888/trunk/src/mod/languages/mod_python/freeswitch_python.h

Log:


Added: freeswitch/branches/jkr888/trunk/src/mod/languages/mod_python/freeswitch_python.cpp
==============================================================================
--- (empty file)
+++ freeswitch/branches/jkr888/trunk/src/mod/languages/mod_python/freeswitch_python.cpp	Wed Nov 29 17:51:21 2006
@@ -0,0 +1,13 @@
+#include "freeswitch_python.h"
+
+SessionContainer::SessionContainer()
+{
+
+}
+
+SessionContainer::~SessionContainer()
+{
+
+}
+
+

Added: freeswitch/branches/jkr888/trunk/src/mod/languages/mod_python/freeswitch_python.h
==============================================================================
--- (empty file)
+++ freeswitch/branches/jkr888/trunk/src/mod/languages/mod_python/freeswitch_python.h	Wed Nov 29 17:51:21 2006
@@ -0,0 +1,20 @@
+#ifdef __cplusplus
+exten "C" {
+#endif
+
+#include <switch.h>
+
+class SessionContainer {
+    private:
+        switch_core_session_t *session;
+        switch_channel_t *channel;
+        char *uuid;
+    public:
+        SessionContainer();
+        ~SessionContainer();
+    protected:
+};
+
+#ifdef __cplusplus
+}
+#endif



More information about the Freeswitch-branches mailing list