summaryrefslogblamecommitdiffstats
path: root/endpointapp.h
blob: 11001f3bd639d70301f134aa62632906c5fbccfc (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 int		handler(void);
	virtual void ea_message_port(unsigned long port_id, int message, union parameter *param);
	virtual void ea_message_join(unsigned long join_id, int message, union parameter *param);
};