fix last remnant of "extern" vs. incorrect "external" confusion, correct spelling
[lcr.git] / endpointapp.h
1 /*****************************************************************************\
2 **                                                                           **
3 ** Linux Call Router                                                         **
4 **                                                                           **
5 **---------------------------------------------------------------------------**
6 ** Copyright: Andreas Eversberg                                              **
7 **                                                                           **
8 ** EndpointApp header file                                                   **
9 **                                                                           **
10 \*****************************************************************************/ 
11
12
13 /* structure of an EndpointApp */
14 class EndpointApp
15 {
16         public:
17         EndpointApp(class Endpoint *epoint, int origin);
18         virtual ~EndpointApp();
19
20         class Endpoint          *ea_endpoint;
21         virtual void ea_message_port(unsigned int port_id, int message, union parameter *param);
22         virtual void ea_message_join(unsigned int join_id, int message, union parameter *param);
23 };
24