66 |
|
interface FilterInfo { |
67 |
|
string getHostName(); |
68 |
|
string getUDPPort(); |
69 |
– |
string getTCPPort(); |
69 |
|
}; |
70 |
|
|
71 |
|
// end filter |
72 |
|
}; |
73 |
|
|
74 |
< |
module client { |
74 |
> |
module clientinterface { |
75 |
|
interface Client { |
76 |
|
void receiveXML(in string xml); |
77 |
|
}; |
79 |
– |
// end client |
80 |
– |
}; |
81 |
– |
|
82 |
– |
module clientinterface { |
83 |
– |
interface ClientInterface { |
84 |
– |
void receiveXML(in string xml); |
85 |
– |
}; |
78 |
|
interface CorbaControlHandler { |
79 |
|
boolean startData(); |
80 |
|
boolean stopData(); |
82 |
|
void disconnect(); |
83 |
|
}; |
84 |
|
interface CorbaClientListener { |
85 |
< |
CorbaControlHandler connect(in client::Client client, in string name); |
85 |
> |
CorbaControlHandler connect(in Client client, in string name); |
86 |
|
}; |
87 |
|
// end clientinterface |
88 |
|
}; |