only for backup, still in coding state - no compile!!!
[lcr.git] / callchan.h
diff --git a/callchan.h b/callchan.h
new file mode 100644 (file)
index 0000000..080bdbe
--- /dev/null
@@ -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;
+}; 
+
+