backup
[lcr.git] / callchan.h
1 /*****************************************************************************\
2 **                                                                           **
3 ** PBX4Linux                                                                 **
4 **                                                                           **
5 **---------------------------------------------------------------------------**
6 ** Copyright: Andreas Eversberg                                              **
7 **                                                                           **
8 ** call header file for channel interface                                    **
9 **                                                                           **
10 \*****************************************************************************/ 
11
12 class CallChan : public Call
13 {
14         public:
15         CallChan(class Endpoint *epoint);
16         ~CallChan();
17         void message_epoint(unsigned long epoint_id, int message, union parameter *param);
18         int handler(void);
19         void release(unsigned long epoint_id, int hold, int location, int cause);
20
21         unsigned long c_epoint_id;
22 }; 
23
24