From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!postnews.google.com!o10g2000yqa.googlegroups.com!not-for-mail From: Pablo Newsgroups: comp.lang.ada Subject: How to interconnect independent modules Date: Thu, 1 Oct 2009 07:46:05 -0700 (PDT) Organization: http://groups.google.com Message-ID: <0a41ed4f-7530-4ef9-8d68-b71f404869f4@o10g2000yqa.googlegroups.com> NNTP-Posting-Host: 201.7.145.1 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: posting.google.com 1254408366 14174 127.0.0.1 (1 Oct 2009 14:46:06 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 1 Oct 2009 14:46:06 +0000 (UTC) Cc: fltjunio@embraer.com.br, pablo.rego@embraer.com.br Complaints-To: groups-abuse@google.com Injection-Info: o10g2000yqa.googlegroups.com; posting-host=201.7.145.1; posting-account=n9Sa1woAAACZc_iwSjaEkj9Lnt-XVrSr User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; pt-BR; rv:1.9.0.14) Gecko/2009082707 Firefox/3.0.14 (.NET CLR 3.5.30729),gzip(gfe),gzip(gfe) Xref: g2news2.google.com comp.lang.ada:8560 Date: 2009-10-01T07:46:05-07:00 List-Id: Hi people. I have a main file called Main which access a library called Mylib using a method called Mymethod: Mylib.Mymethod (Parameter1, Value), been Parameter1 a list of parameters defined in Main and Value could be a float. I have a GUI client application which accesses tasks initiated in Main but the data from Mylib and plots some stuff from these data. But I created a new service application, which is a new main file called Secondary which imports the same library Mylib and uses it according to Mylib (Parameter2, Value). Parameter2 is a list of parameters defined in Secondary but not in Main and I have the restriction of I must not modify the main file Main to include these new parameters (but the library Mylib works independently with both). My problem is: I need the data passed from Secondary through Mylib appear in my GUI client application. So anyone can help me? Thanks very much.