summaryrefslogblamecommitdiffstats
path: root/joinremote.h
blob: a9334669bdb81ced71831bc58b27be9804199f91 (plain) (tree)
1
2
3
4
5
6
7
8

                                                                               
                                                                               



                                                                               
                                                                               


                                                                                
                              

               
                                                                          
                      
                                                                                         
                                                                      
 
                                  

                               
                                 


   
/*****************************************************************************\
**                                                                           **
** Linux Call Router                                                         **
**                                                                           **
**---------------------------------------------------------------------------**
** Copyright: Andreas Eversberg                                              **
**                                                                           **
** join header file for Asterisk interface                                   **
**                                                                           **
\*****************************************************************************/ 

class JoinRemote : public Join
{
	public:
	JoinRemote(unsigned int serial, char *remote_name, int remote_id);
	~JoinRemote();
	void message_epoint(unsigned int epoint_id, int message, union parameter *param);
	void message_remote(int message_type, union parameter *param);

	unsigned int j_remote_ref;
	int j_remote_id;
	char j_remote_name[32];
	unsigned int j_epoint_id;
};