comp.lang.ada
 help / color / mirror / Atom feed
* Ada Configuration API for Unix and Windows
@ 2002-12-03 16:47 Ulrich Eckhardt
  2002-12-03 21:35 ` Stephen Leake
  0 siblings, 1 reply; 10+ messages in thread
From: Ulrich Eckhardt @ 2002-12-03 16:47 UTC (permalink / raw)


Hi,

as promised some time ago, i have finished my platform independent API
for accessing configuration informations (Copyright GPL).
More infos on http://www.uli-eckhardt.de/ada_registry/

Comments and suggestion are welcome.

Uli
-- 
Ulrich Eckhardt
http://www.uli-eckhardt.de




^ permalink raw reply	[flat|nested] 10+ messages in thread
* Re: Ada Configuration API for Unix and Windows
@ 2002-12-05  6:10 Grein, Christoph
  0 siblings, 0 replies; 10+ messages in thread
From: Grein, Christoph @ 2002-12-05  6:10 UTC (permalink / raw)


> > >   Put(reg,To_Key("A_Key"),"A Value"); -- A Key in the default section
> > >   Why is the conversion To_Key necessary? Surely it could be done by
> > > Put?
> > 
> > I have decided to introduce special types for sections and values,
> > so that the user can not accidentialy permute sections and keys or
> > other unbounded strings, specialy when variables are used (and not
> > simple string literals like in the example).
> 
> That seems to make sense at first, but just gets in the way in the
> long run. A string is a string. Named association is a better
> solution. 

declare
  -- type T is new String;  or alternatively
  type T is array (Positive range <>) of Character;
  procedure P (L: T; R: String) is
  begin
    null;
  end P;
begin
  P ("AAA", "BBB");      -- legal
  P (T'("AAA"), "BBB");  -- legal
  P (T("AAA"), "BBB");   -- illegal (type of "AAA" can not be determined)
end;

So again: Why is the conversion necessary?



^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2002-12-05  8:43 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-12-03 16:47 Ada Configuration API for Unix and Windows Ulrich Eckhardt
2002-12-03 21:35 ` Stephen Leake
2002-12-03 22:29   ` Martin Dowie
2002-12-03 22:57     ` Stephen Leake
2002-12-04 13:09       ` Martin Dowie
2002-12-04  9:27   ` Ulrich Eckhardt
2002-12-04 13:49     ` Stephen Leake
2002-12-04 14:20       ` Ulrich Eckhardt
2002-12-05  8:43   ` Victor Porton
  -- strict thread matches above, loose matches on Subject: below --
2002-12-05  6:10 Grein, Christoph

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