summaryrefslogtreecommitdiffstats
path: root/callchan.h
diff options
context:
space:
mode:
authorSuper User2007-05-06 15:54:52 +0200
committerSuper User2007-05-06 15:54:52 +0200
commit2ed0fee489c37a6e2d4473f6185ebbe3e746ac11 (patch)
treefcf232bc282c083404cfde0ce5b04236fe202c3e /callchan.h
parentfirst commit (diff)
downloadlcr-2ed0fee489c37a6e2d4473f6185ebbe3e746ac11.tar.gz
lcr-2ed0fee489c37a6e2d4473f6185ebbe3e746ac11.tar.xz
lcr-2ed0fee489c37a6e2d4473f6185ebbe3e746ac11.zip
only for backup, still in coding state - no compile!!!
Diffstat (limited to 'callchan.h')
-rw-r--r--callchan.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/callchan.h b/callchan.h
new file mode 100644
index 0000000..080bdbe
--- /dev/null
+++ b/callchan.h
@@ -0,0 +1,24 @@
+/*****************************************************************************\
+** **
+** PBX4Linux **
+** **
+**---------------------------------------------------------------------------**
+** Copyright: Andreas Eversberg **
+** **
+** call header file for channel interface **
+** **
+\*****************************************************************************/
+
+class CallChan : public Call
+{
+ public:
+ CallChan(class Endpoint *epoint);
+ ~CallChan();
+ void message_epoint(unsigned long epoint_id, int message, union parameter *param);
+ int handler(void);
+ void release(unsigned long epoint_id, int hold, int location, int cause);
+
+ unsigned long c_epoint_id;
+};
+
+