summaryrefslogblamecommitdiffstats
path: root/endpointapp.h
blob: a24faae0c30aace1c38a99d32d73f9f4e45f3d79 (plain) (tree)
1
2
3

                                                                               
                                                                               












                                                                                
                                                        


                                             

                                                                                                

  
/*****************************************************************************\
**                                                                           **
** Linux Call Router                                                         **
**                                                                           **
**---------------------------------------------------------------------------**
** Copyright: Andreas Eversberg                                              **
**                                                                           **
** EndpointApp header file                                                   **
**                                                                           **
\*****************************************************************************/ 


/* structure of an EndpointApp */
class EndpointApp
{
	public:
	EndpointApp(class Endpoint *epoint, int origin);
	virtual ~EndpointApp();

	class Endpoint		*ea_endpoint;
	virtual void ea_message_port(unsigned int port_id, int message, union parameter *param);
	virtual void ea_message_join(unsigned int join_id, int message, union parameter *param);
};