No that will not work.

Each of the two components B and C "provides" the
interface IF. Lets assume IF has a command
some_command:

interface IF {
 command result_t some_command();
}

B and C provides their own implementation.
Ex. in B, I have

command result_t IF.some_command() {
    /* Some implementation */
}

And in C:
command result_t IF.some_command() {
    /* Some different implementatio */
}

Now A wants to use the IF interface provided by B and
C.
How do I do it?
  

"Do the best you can, with what you have, where you are." -- Roosevelt

__________________________________________________
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com 
_______________________________________________
Tinyos-help mailing list
[email protected]
https://mail.millennium.berkeley.edu/cgi-bin/mailman/listinfo/tinyos-help

Reply via email to