comp.lang.ada
 help / color / mirror / Atom feed
From: Stephen Leake <stephen_leake@acm.org>
Subject: Re: Ada to Ada Pragma Export/Import
Date: Thu, 10 Aug 2006 08:00:11 -0400
Date: 2006-08-10T08:00:11-04:00	[thread overview]
Message-ID: <u64h06bsk.fsf@acm.org> (raw)
In-Reply-To: 1155161131.024343.273760@b28g2000cwb.googlegroups.com

"AskeyAJ@gmail.com" <AskeyAJ@gmail.com> writes:

> I need to deliver object files (coded in Ada) to another team who will
> access the public routines in their Ada code.  I cannot deliver the
> package bodies (but can deliver the object files, the specs, and the
> ALI files).  For example, suppose I want do deliver the hello_pkg.o and
> hello_pkg.ads from the code below.
>
> My assumption is that I need to export the Say_It procedure in the
> spec, and then the other team would need to import this procedure into
> their code.  Is this correct?  

No. just deliver a normal Ada spec; see below.

package Hello_Pkg is
   procedure Say_It;
end Hello_Pkg;

with Ada.Text_Io;
package body Hello_Pkg is
   procedure Say_It is
      begin
         Ada.Text_Io.Put_Line("Hello World.");
      end Say_It;
end Hello_Pkg;


with Hello_Pkg;
procedure Test_Hello is
begin
   Hello_Pkg.Say_It;
end Test_Hello;


-- 
-- Stephe



  parent reply	other threads:[~2006-08-10 12:00 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-09 22:05 Ada to Ada Pragma Export/Import AskeyAJ
2006-08-09 23:26 ` Jeffrey Creem
2006-08-09 23:48 ` Georg Bauhaus
2006-08-10 12:00 ` Stephen Leake [this message]
2006-08-10 13:06 ` gautier_niouzes
2006-08-10 16:49 ` Martin Krischik
2006-08-11 14:02   ` AskeyAJ
2006-08-11 14:22     ` Ludovic Brenta
2006-08-11 16:55       ` AskeyAJ
2006-08-11 16:35     ` Martin Krischik
2006-08-11 16:58       ` AskeyAJ
replies disabled

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox