comp.lang.ada
 help / color / mirror / Atom feed
From: Georg Bauhaus <rm.dash-bauhaus@futureapps.de>
Subject: Re: Publishing selected entries in a protected object?
Date: Thu, 09 Feb 2012 14:59:51 +0100
Date: 2012-02-09T14:59:52+01:00	[thread overview]
Message-ID: <4f33d158$0$7625$9b4e6d93@newsspool1.arcor-online.net> (raw)
In-Reply-To: <87wr7wkyp5.fsf@adaheads.sparre-andersen.dk>

On 09.02.12 12:56, Jacob Sparre Andersen wrote:
> I have a package containing a protected object, and I would like to
> publish _one_ of this object's entries in the specification of the
> package.


Using synchronized interfaces should work?


package Semi is

   type Half is synchronized interface;

   procedure Grab (PO : in out Half) is abstract;

   function MakePO return Half'Class;

private

   protected type Full is new Half with
     overriding
     entry Grab;

     entry Foo;
   end Full;

end Semi;

...

   function MakePO return Half'Class is
   begin
      return Result : Full;
   end MakePO;





  parent reply	other threads:[~2012-02-09 14:00 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-09 11:56 Publishing selected entries in a protected object? Jacob Sparre Andersen
2012-02-09 13:42 ` Dmitry A. Kazakov
2012-02-09 13:59 ` Georg Bauhaus [this message]
2012-02-09 18:24   ` AdaMagica
2012-02-10  1:29   ` Randy Brukardt
2012-02-09 19:29 ` Jeffrey Carter
replies disabled

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