comp.lang.ada
 help / color / mirror / Atom feed
From: "jimmaureenrogers@worldnet.att.net" <jimmaureenrogers@worldnet.att.net>
Subject: Re: Teaching new tricks to an old dog (C++ -->Ada)
Date: 9 Mar 2005 07:56:08 -0800
Date: 2005-03-09T07:56:08-08:00	[thread overview]
Message-ID: <1110383768.773379.61780@o13g2000cwo.googlegroups.com> (raw)
In-Reply-To: <1110377260.350158.58730@z14g2000cwz.googlegroups.com>


Hans Malherbe wrote:
> Somewhere in this thread Loduvic writes:
>
> * in Ada, loop variables (a) are constants and (b) do not exist
outside
> of the loop
>
> This is safer, but limiting.
> In C++ may want to declare the variable outside the loop,
> break out early and use the loop variable. Let me guess: You can't
> break out early in Ada, right?

I see your problem, and I think I see where you have been
misled. Ada provides three looping forms. Only one, the "for"
loop, uses an automatically created local loop variable.

Ada does allow you to break out of a loop early. In fact,
one of the looping forms normally depends on that ability.

The looping forms in Ada are:

Simple loop ->

   loop
      some actions;
   end loop;

While loop ->

   while condition loop
      some actions;
   end loop;

For loop ->

   for I in some_range loop
      some actions;
   end loop;

The simple loop will always be an infinite loop unless
you break out early. The Ada reserved word used to
break out of a loop is "exit". In Ada "exit" does not
exit the program, only the enlcosing loop.

The Ada exit command is commonly used in response to
some condition:

   if condition then
      exit;
   end if;

   This usage is so common that Ada provides a short-hand
   syntax to achieve the same ends:

   exit when condition;

The exit command can be used in any of the loop forms.

The simple loop is often used to provide a loop with the
conditional test in the middle or at the bottom of the loop.
The conditional test is the condition controlling the exit
command.

The while loop works just like you would expect in many
other languages.

The for loop is somewhat like a foreach loop in C and C++.
It iterates through a discrete range of values. The loop
control variable in the for loop is local to the loop
and is read-only within the loop body.

You should probably choose either the simple loop or the
while loop if you want to use the value of a loop control
variable outside the body of the loop. The only way to use
that value outside the body of a "for" loop is to copy the
value to a variable having a scope outside the loop.

>
>  * assignment is not an operator; it is an operation which does not
>   return a value.  Thus, bugs like "if (something = 0)" cannot exist.
>
> I like this, but it prevents chaining assignments, limiting
> expressiveness slightly since chaining says "equalize" as opposed to
> "assign, assign, assign".

You have that correct.

>
> * case statements (Ada's equivalent of a switch in C++) are required
>   to handle all possible cases.  Thus it is impossible to forget one.
>   And, of course, there is no "break;" crap in Ada.
>
> Prevents fall through.

The Ada case statement is a little more useful than might appear
from the description above.

The general form of the Ada case statement is:

   case discrete_value is
      when value_list =>
         ... some set of statements ...
      when others =>
         ... some set of statements ...
   end case;

The value_list can be in the form of:
   * a single value (i.e. 255)

   * a range of values (i.e. 1..5)

   * a discontinuous set of values (i.e. 1 | 3 | 5 | 17)

The Ada case statement requires that there be a when clause
for every possible value of the type being tested. This works
because Ada also allows you to define your own discrete types
and subtypes, including their valid value ranges.

   subtype Menu_Options is character range 'a'..'c';

   option : Menu_Options;

   case option in
      when 'a' =>
         do_action_a;
      when 'b' =>
         do_action_b;
      when 'c' =>
         do_action_c;
   end case;

If, in the example above, I left out the "when 'c' =>"
part the compiler will issue an error.

The "when others =>" option is equivalent to the "default"
option in C and C++.

>
> * the type system, when used appropriately, makes it possible for the
>   compiler to find semantic errors in addition to just syntax errors.
>   For example, you can declare that Numers_Of_Apples and
>   Numers_Of_Oranges cannot be mixed.  This is not possible with C++'s
>   typedef.
>
> This is more in the C++ tradition. The programmer has choice.
> In C++ you can extend the type system to achieve this and more
> (someone mentioned dimensional analysis), just not with typedef.
>

True. C++ provides strong type separation through the use of
classes.

> * accessibility rules are rather complex, but they are designed to
>   minimise the chance of mistakes.  Basically, the scope of a pointer
>   type must be included in the scope of the pointed-to type.  This
>   makes many mistakes impossible, such as returning a pointer to an
>   object which no longer exists.
>
> This looks like a limitation, but I'm not sure I understand
correctly.
> Example please!

Ada does not provide any generic pointer type equivalent to void*.
You must define each pointer type you want to use. Objects of that
pointer type must be placed within the scope of the definition of
their type. Outside that scope the type does not exist.

This rule does not prevent all attempts to deallocate a null pointer.
Null pointers can be found in any scope and are not only found
when a type goes out of scope.

>
> A few other questions:
>
> Do you have nested functions like Pascal have? Can you access local
> variables? Can you pass pointers to these functions around?

Yes, Ada does allow nested functions, procedures, tasks, and
even packages. A function can access any local visible local
variable. Variables declared in an enclosing scope are visible
within the nested function.

You can create pointers to functions. This is yet another type
of pointer you can create. Pointers to nested functions are
only valid within the enclosing scope of the nested function.

>
> Can you pass non-type parameters (like the number 3.14) to templates?

Yes, Ada generics allow values to be passed, including floating
point values. The generic formal parameter for the value specifies
what type the value can be.

>
> Can templates recurse?
>

Once a generic is instantiated it behaves like any other
compilation unit. Recursion is allowed within generic
subprograms.

> Can you program "const correct"? Eg. if you declare a member function
> as const the compiler will help you not mutate the object or call any
> functions that do. Also, if you pass a parameter as a const
reference,
> you will not be able to mutate the object the parameter references.

Ada syntax for defining what most other languages call classes is a
bit unique. Ada does not use the term "class" like other languages.
The Ada package is used for encapsulation and namespace. A package
specification contains an implicit public part and an explicit
private part. A package may contain more than one type definiton.

Extensible types in Ada are called tagged types. They were introduced
in Ada 95 as an extension of the Ada 83 record syntax.

Ada does not use the dot notation for calling member methods for
tagged types.

For example, if you define a dog class in C++ or Java, and provide
a feed() member function, you call the function as:

  dog d;

  d.feed();

In Ada you can create a dog tagged type, and in the same package
specification you can define a procedure to feed the dog.
The procedure specification would look like:

   procedure feed(The_Dog : out dog);

The procedure would be called as:

   d : dog;

   feed(d);

or, using named notation:

   feed(The_Dog => d);

The procedure specification is the key to "const correctness".
Procedure parameters have a passing mode. Three options are
possible for the passing mode:

  IN  --- Parameter is treated as a const (read-only) value
          within the procedure or function. Function parameters
          can only be IN mode.
  OUT --- Parameter is both readable and writeable within the
          procedure, but there is not guarantee of an intial
          value for the parameter
  IN OUT - Parameter is both readable and writeable within
           the procedure. Parameter retains the value passed
           in from the actual parameter.

Jim Rogers




  parent reply	other threads:[~2005-03-09 15:56 UTC|newest]

Thread overview: 1036+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-03-05 13:42 Teaching new tricks to an old dog (C++ -->Ada) Turamnvia Suouriviaskimatta
2005-03-05 14:11 ` Ludovic Brenta
2005-03-05 14:17 ` EventHelix.com
2005-03-05 14:25   ` Ludovic Brenta
2005-03-05 15:02     ` [OT] " Peter Koch Larsen
2005-03-05 15:39       ` Ludovic Brenta
2005-03-05 16:30         ` Peter Koch Larsen
2005-03-05 17:52           ` Martin Dowie
2005-03-05 19:27             ` Dmitry A. Kazakov
2005-03-05 19:39               ` Martin Dowie
2005-03-05 19:46           ` Ludovic Brenta
2005-03-05 20:27             ` Ioannis Vranos
2005-03-05 21:15               ` Pascal Obry
2005-03-05 21:57                 ` Ioannis Vranos
2005-03-05 22:11                   ` Ioannis Vranos
2005-03-05 22:39                   ` Ioannis Vranos
2005-03-05 23:29                   ` Ludovic Brenta
2005-03-05 23:55                     ` Ioannis Vranos
2005-03-06  0:01                     ` Ioannis Vranos
2005-03-08  6:53                     ` Jerry Coffin
2005-03-08  9:20                       ` Ioannis Vranos
2005-03-08 15:29                         ` Jerry Coffin
2005-03-08 19:16                           ` Ludovic Brenta
2005-03-09 12:54                           ` Marin David Condic
2005-03-08 11:21                       ` [OT] Assembler vs. assembly Marius Amado Alves
2005-03-08 14:06                         ` Ed Falis
2005-03-08 19:18                         ` Ludovic Brenta
2005-03-08 21:16                           ` Marius Amado Alves
2005-03-08 11:47                       ` Teaching new tricks to an old dog (C++ -->Ada) Dr. Adrian Wrigley
2005-03-09  2:43                         ` Jerry Coffin
2005-03-09  9:44                           ` Peter Hermann
2005-03-09 14:32                             ` Jerry Coffin
2005-03-09 22:26                               ` Randy Brukardt
2005-03-09 22:29                           ` Ludovic Brenta
2005-03-09 22:53                             ` Jerry Coffin
2005-03-09 23:11                               ` Ludovic Brenta
2005-03-10  0:12                                 ` Jerry Coffin
2005-03-08 13:02                       ` Falk Tannhäuser
2005-03-08 14:37                         ` Jerry Coffin
2005-03-08 23:29                         ` Ioannis Vranos
2005-03-08 19:25                       ` Ludovic Brenta
2005-03-06  0:41                   ` [OT] " Jim Rogers
2005-03-06  1:23                     ` Ioannis Vranos
2005-03-06  1:35                       ` Ioannis Vranos
2005-03-06  3:11                       ` Jim Rogers
2005-03-06  4:09                         ` Ioannis Vranos
2005-03-06  6:12                           ` Jim Rogers
2005-03-06  1:41                     ` Ioannis Vranos
2005-03-06 20:52                   ` Wouter van Ooijen (www.voti.nl)
2005-03-08  5:12                     ` adaworks
2005-03-08  8:02                       ` Jerry Coffin
2005-03-08 19:52                         ` Martin Dowie
2005-03-09  1:48                           ` Jerry Coffin
2005-03-09  7:00                             ` Martin Dowie
2005-03-09 17:41                               ` Jerry Coffin
2005-03-09 17:53                                 ` Adrien Plisson
2005-03-09 23:12                                   ` Jerry Coffin
2005-03-09 23:36                                     ` Martin Dowie
2005-03-10  2:39                                       ` Jerry Coffin
2005-03-10  7:01                                         ` Martin Dowie
2005-03-10 15:08                                           ` Jerry Coffin
2005-03-10 17:38                                             ` Martin Dowie
2005-03-11  5:10                                               ` Jerry Coffin
2005-03-11 23:37                                                 ` Ludovic Brenta
2005-03-10  2:47                                       ` Ioannis Vranos
2005-03-10 11:29                                         ` Georg Bauhaus
2005-03-10 11:57                                           ` Falk Tannhäuser
2005-03-10 22:38                                     ` Randy Brukardt
2005-03-11  6:21                                       ` Jerry Coffin
2005-03-11  7:10                                         ` Pascal Obry
2005-03-11 15:52                                           ` Jerry Coffin
2005-03-12  0:25                                             ` Martin Dowie
2005-03-12  0:41                                               ` Martin Dowie
2005-03-14 20:41                                               ` kevin  cline
2005-03-12 10:43                                             ` Martin Krischik
2005-03-12 11:21                                               ` Peter Koch Larsen
2005-03-12 15:25                                                 ` Martin Krischik
2005-03-12 16:37                                                   ` Ioannis Vranos
2005-03-12 18:58                                                     ` C/C++ ISO releases and compliance Martin Krischik
2005-03-12 19:22                                                       ` Ioannis Vranos
2005-03-21 15:49                                                     ` Teaching new tricks to an old dog (C++ -->Ada) adaworks
2005-03-21 22:15                                                       ` Paul Dietz
2005-03-23  0:04                                                         ` Randy Brukardt
2005-03-12 20:59                                                   ` Robert A Duff
2005-03-13  9:50                                                     ` Martin Krischik
2005-03-14 20:14                                                   ` kevin  cline
2005-03-14 20:20                                                     ` Ioannis Vranos
2005-03-14 21:35                                                       ` Robert A Duff
2005-03-14 22:52                                                         ` Ioannis Vranos
2005-03-14 23:23                                                           ` Robert A Duff
2005-03-14 23:36                                                             ` Ioannis Vranos
2005-03-15  0:22                                                               ` Robert A Duff
2005-03-15  0:59                                                                 ` Ioannis Vranos
2005-03-15 16:00                                                     ` Martin Krischik
2005-03-15 17:18                                                       ` kevin  cline
2005-03-15 19:07                                                         ` Martin Dowie
2005-03-16  8:46                                                         ` Martin Krischik
2005-03-16 12:17                                                           ` Ioannis Vranos
2005-03-16 14:28                                                             ` Georg Bauhaus
2005-03-16 14:29                                                               ` Ioannis Vranos
2005-03-16 17:00                                                               ` Ioannis Vranos
2005-03-16 18:30                                                                 ` Georg Bauhaus
2005-03-16 18:38                                                                   ` Ioannis Vranos
2005-03-16 11:02                                                         ` Georg Bauhaus
2005-03-16 12:56                                                           ` Ioannis Vranos
2005-03-16 13:05                                                             ` Vinzent 'Gadget' Hoefler
2005-03-16 13:19                                                             ` Pascal Obry
2005-03-16 13:46                                                               ` Ioannis Vranos
2005-03-16 15:59                                                                 ` Pascal Obry
2005-03-16 16:03                                                                 ` Georg Bauhaus
2005-03-16 13:49                                                             ` Georg Bauhaus
2005-03-16 17:25                                                             ` Martin Krischik
2005-03-13 18:41                                               ` Jerry Coffin
2005-03-13 19:21                                                 ` Ioannis Vranos
2005-03-13 23:58                                                   ` dave
2005-03-14  2:17                                                     ` Jeff C
2005-03-14  9:02                                                       ` dave
2005-03-14  9:07                                                         ` dave
2005-03-14  9:14                                                       ` Ioannis Vranos
2005-03-13 19:52                                                 ` Ed Falis
2005-03-14  8:27                                                 ` Jean-Pierre Rosen
2005-03-14 22:55                                                 ` Randy Brukardt
2005-03-15  3:55                                                   ` Jerry Coffin
2005-03-15  6:33                                                     ` Randy Brukardt
2005-03-15 14:00                                                       ` Jerry Coffin
2005-03-15 21:36                                                         ` Randy Brukardt
2005-03-16 23:27                                                           ` Jerry Coffin
2005-03-17  3:48                                                             ` Randy Brukardt
2005-03-17 18:44                                                               ` Jerry Coffin
2005-03-17 20:48                                                                 ` Chad  R. Meiners
2005-03-18  1:43                                                                   ` Jerry Coffin
2005-03-17 23:15                                                                 ` Randy Brukardt
2005-03-17 20:53                                                             ` Chad  R. Meiners
2005-03-18  1:45                                                               ` Jerry Coffin
2005-03-18 15:00                                                                 ` Chad  R. Meiners
2005-03-11  9:04                                         ` Adrien Plisson
2005-03-11 16:58                                           ` Jerry Coffin
2005-03-12 22:13                                             ` Robert A Duff
2005-03-18  2:07                                               ` Jerry Coffin
2005-03-11 22:38                                         ` Wes Groleau
2005-03-21 15:37                                         ` adaworks
2005-03-22  5:00                                           ` Wes Groleau
2005-03-15  1:14                                       ` Larry Kilgallen
2005-03-16 14:12                                       ` Larry Kilgallen
2005-03-16 14:48                                         ` Vinzent 'Gadget' Hoefler
     [not found]                                       ` <1110522060.091940.178510@l41g2000cwc.googleFollowup-To: comp.lang.ada <dxZMIzEUCfAu@eisner.encompasserve.org>
2005-03-16 19:14                                         ` Robert A Duff
2005-03-09 18:04                                 ` Martin Dowie
2005-03-09 18:04                                 ` Martin Dowie
2005-03-09 18:41                                   ` Dmitry A. Kazakov
2005-03-09 18:52                                   ` xpyttl
2005-03-10  9:33                                     ` Martin Dowie
2005-03-10  1:03                                   ` Wes Groleau
     [not found]                               ` <1110390097.53213 <4587297.MlX1AOUbAb@linux1.krischik.com>
2005-03-13  3:17                                 ` C/C++ ISO releases and compliance Greg Comeau
     [not found]                               ` <1110390097.532139.43430@f14g2000cwb.googlegro <3254889.VeKxRnD1pd@linux1.krischik.com>
2005-03-13 14:32                                 ` Teaching new tricks to an old dog (C++ -->Ada) Greg Comeau
     [not found]                               ` <1110390097.532139.43430@f14g2000cwb.googlegrou <ath31d.1vm.ln@hunter.axlog.fr>
2005-03-14 20:46                                 ` Greg Comeau
2005-03-14 22:53                                   ` Martin Dowie
2005-03-14 23:00                                   ` Randy Brukardt
2005-03-15  9:18                                   ` Jean-Pierre Rosen
2005-03-22  8:08                               ` Larry Kilgallen
     [not found]                             ` <d0m <4952804.Myubg7stsI@linux1.krischik.com>
2005-03-13  1:55                               ` Greg Comeau
2005-03-13  2:12                               ` Greg Comeau
     [not found]                             ` <d0m <1462853.JgxLXPrZ7W@linux1.krischik.com>
2005-03-13  2:49                               ` Greg Comeau
2005-03-13  9:19                                 ` Martin Dowie
2005-03-13 14:26                                   ` Greg Comeau
2005-03-13 17:27                                     ` Martin Krischik
2005-03-13 18:17                                       ` Martin Dowie
2005-03-13 20:07                                       ` Greg Comeau
2005-03-14  0:31                                         ` Robert A Duff
2005-03-14  2:15                                           ` Ed Falis
2005-03-14 16:26                                             ` Larry Kilgallen
2005-03-14  8:53                                           ` Ioannis Vranos
2005-03-14  8:55                                             ` Ioannis Vranos
2005-03-14 20:27                                           ` Greg Comeau
2005-03-14 21:30                                             ` Robert A Duff
2005-03-14 21:53                                               ` Greg Comeau
2005-03-21 15:54                                               ` adaworks
2005-03-21 16:54                                                 ` Jerry Coffin
2005-03-21 17:10                                                   ` Yermat
2005-03-21 17:19                                                   ` Robert A Duff
2005-03-14 20:05                       ` kevin  cline
2005-03-23 23:51                         ` adaworks
2005-03-24  2:53                           ` Wes Groleau
2005-03-24 19:26                           ` kevin  cline
2005-03-08  4:59                   ` [OT] " adaworks
2005-03-08 15:02                   ` John Hudak
2005-03-08 19:13                     ` Ludovic Brenta
2005-03-08 23:40                     ` Ioannis Vranos
2005-03-05 22:44             ` Peter Koch Larsen
2005-03-05 22:59               ` Ludovic Brenta
2005-03-06  0:58                 ` Ed Falis
2005-03-06 13:11                   ` Ludovic Brenta
2005-03-06  7:54               ` Dmitry A. Kazakov
2005-03-06 11:21               ` Martin Krischik
2005-03-06 20:57               ` Wouter van Ooijen (www.voti.nl)
2005-03-06  1:03             ` Martin Dowie
2005-03-06  1:33               ` Pete Fenelon
2005-03-06  1:59               ` Larry Elmore
2005-03-06 15:22               ` xpyttl
2005-03-06 15:38                 ` Pete Fenelon
2005-03-07 11:03             ` Christoph Grein
2005-03-05 20:12           ` Larry Kilgallen
2005-03-06 20:49           ` Wouter van Ooijen (www.voti.nl)
2005-03-06 23:09             ` Peter Koch Larsen
2005-03-06 23:20               ` jimmaureenrogers
2005-03-06 23:42                 ` Paul E. Bennett
2005-03-07  2:01                   ` Larry Kilgallen
2005-03-07  2:04                   ` Jim Rogers
2005-03-07  4:10                   ` Ed Falis
2005-03-07  7:00                   ` Martin Dowie
2005-03-06 23:29               ` [OT] " Paul E. Bennett
2005-03-07  1:56                 ` Larry Kilgallen
2005-03-07  4:06                 ` Ed Falis
2005-03-07  7:06                 ` Wouter van Ooijen (www.voti.nl)
2005-03-07 20:10                 ` Simon Wright
2005-03-07 23:33                 ` Ludovic Brenta
2005-03-07  7:04               ` Wouter van Ooijen (www.voti.nl)
2005-03-08  4:50           ` adaworks
2005-03-08 14:51           ` John Hudak
2005-03-09  0:02             ` Ioannis Vranos
2005-03-09  6:53               ` Martin Dowie
2005-03-09  9:43                 ` Ioannis Vranos
2005-03-09 10:11                   ` Martin Dowie
2005-03-10 18:32           ` Preben Randhol
2005-03-11  3:00             ` Larry Kilgallen
2005-03-05 19:48         ` Ioannis Vranos
2005-03-05 20:12           ` Mark Lorenzen
2005-03-05 20:13           ` Ludovic Brenta
2005-03-05 20:44             ` Ioannis Vranos
2005-03-05 20:46               ` Ioannis Vranos
2005-03-06  0:55                 ` Martin Dowie
2005-03-05 21:11               ` Pascal Obry
2005-03-06  3:31                 ` Frank J. Lhota
2005-03-05 21:39               ` Adrien Plisson
2005-03-05 21:45                 ` Adrien Plisson
2005-03-06  3:30               ` Frank J. Lhota
2005-03-06 23:16                 ` Wes Groleau
2005-03-05 21:08             ` Adrien Plisson
2005-03-06 10:57               ` Martin Krischik
2005-03-06 23:26                 ` Wes Groleau
2005-03-07 10:06                   ` Martin Krischik
2005-03-06 21:01             ` Wouter van Ooijen (www.voti.nl)
2005-03-06 21:49               ` Martin Dowie
2005-03-07 14:30                 ` Christoph Grein
2005-03-07 19:03                   ` Martin Dowie
2005-03-05 21:23           ` Martin Krischik
2005-03-06  8:50             ` Ioannis Vranos
2005-03-06 10:43               ` Martin Krischik
2005-03-06 10:48               ` Leif Roar Moldskred
2005-03-06 12:45               ` Mark Lorenzen
2005-03-06 16:13               ` Jim Rogers
2005-03-10 22:36                 ` Robert A Duff
2005-03-05 22:01           ` Larry Kilgallen
2005-03-10  3:47             ` Song Yun Zhao
2005-03-10  4:53               ` Larry Kilgallen
2005-03-10 11:59             ` Alberto
2005-03-10 12:05               ` Adrien Plisson
2005-03-10 12:09               ` Adrien Plisson
2005-03-10 13:25                 ` Larry Kilgallen
2005-03-11 15:51                 ` T Beck
2005-03-22 12:04                   ` adaworks
2005-03-22 13:58                     ` Larry Kilgallen
2005-03-10 12:37               ` [OT] " Alex R. Mosteo
2005-03-10 17:55                 ` Pascal Obry
2005-03-10 21:26                   ` Lutz Donnerhacke
2005-03-11 15:52                     ` jayessay
2005-03-11  2:32                   ` Ioannis Vranos
2005-03-11  2:46                     ` Ioannis Vranos
2005-03-11 16:04                       ` jayessay
2005-03-10 22:15                 ` Robert A Duff
2005-03-11  7:52                   ` Hans Malherbe
2005-03-11 14:00                     ` Robert A Duff
2005-03-11 17:02                       ` Jerry Coffin
2005-03-11 20:48                         ` Robert A Duff
2005-03-12  6:19                           ` Jerry Coffin
2005-03-11  8:52                   ` [OT] " Alex R. Mosteo
2005-03-10 13:24               ` Larry Kilgallen
2005-03-11  7:50                 ` Alberto
2005-03-11 13:16                   ` Larry Kilgallen
2005-03-11 22:48                   ` Wes Groleau
2005-03-10 13:42               ` Dmitry A. Kazakov
2005-03-11  8:05                 ` Alberto
2005-03-11  9:30                   ` Dmitry A. Kazakov
2005-03-11  9:42                     ` Peter Koch Larsen
2005-03-11 10:14                       ` Dmitry A. Kazakov
2005-03-11 12:12                         ` Ioannis Vranos
2005-03-11 12:22                           ` Alex R. Mosteo
2005-03-11 13:29                             ` Peter Koch Larsen
2005-03-11 13:48                               ` Alex R. Mosteo
2005-03-11 12:24                           ` Ioannis Vranos
2005-03-11 13:34                           ` Dmitry A. Kazakov
2005-03-11 14:39                             ` Ioannis Vranos
2005-03-11 13:28                         ` Peter Koch Larsen
2005-03-11 15:29                           ` Dmitry A. Kazakov
2005-03-11 18:07                             ` Peter Koch Larsen
2005-03-11 22:55                     ` Wes Groleau
2005-03-21 21:00                   ` Robert A Duff
2005-03-28  6:33                     ` Dave Thompson
2005-03-28 15:12                       ` Ioannis Vranos
2005-03-28 15:44                         ` REH
2005-03-28 16:12                           ` Ioannis Vranos
2005-03-28 16:43                             ` REH
2005-03-28 18:29                               ` Ioannis Vranos
2005-03-28 18:51                                 ` REH
2005-03-28 19:59                                   ` Ioannis Vranos
2005-03-28 20:42                                     ` REH
2005-03-28 21:24                                       ` Ioannis Vranos
2005-03-28 21:52                                         ` REH
2005-03-29  3:10                                           ` Ioannis Vranos
2005-03-30 12:38                                             ` Ioannis Vranos
2005-03-28 15:44                         ` Ioannis Vranos
2005-03-28 17:03                         ` REH
2005-03-28 18:47                           ` Ioannis Vranos
2005-03-28 19:01                             ` REH
2005-03-28 20:13                               ` Ioannis Vranos
2005-03-28 20:33                                 ` Ioannis Vranos
2005-03-28 17:41                     ` Larry Kilgallen
2005-03-10 16:40               ` red floyd
2005-03-11  4:07                 ` Jim Rogers
2005-03-11  5:05                   ` red floyd
2005-03-10 17:54               ` Pascal Obry
2005-03-11  9:09                 ` Peter Hermann
2005-03-11  2:32               ` fmdf
2005-03-11  2:46                 ` fmdf
2005-03-11  4:06                 ` Ioannis Vranos
2005-03-11  4:53                   ` fabio de francesco
2005-03-11  7:07                     ` Ioannis Vranos
2005-03-11 10:47                     ` Marius Amado Alves
2005-03-12 22:33                     ` Robert A Duff
2005-03-11  5:16                   ` fabio de francesco
2005-03-11  7:25                     ` Ioannis Vranos
2005-03-06  1:01           ` [OT] " Martin Dowie
2005-03-06  1:30             ` Ioannis Vranos
2005-03-06  3:20               ` Jim Rogers
2005-03-06  3:53                 ` Ioannis Vranos
2005-03-06 10:28               ` Martin Krischik
2005-03-06 22:24                 ` Pascal Obry
2005-03-06  4:50             ` Larry Kilgallen
2005-03-08 12:14             ` Hans Malherbe
2005-03-08 12:59               ` Dr. Adrian Wrigley
2005-03-08 13:27                 ` Ioannis Vranos
2005-03-08 18:06                   ` Dr. Adrian Wrigley
2005-03-09  0:05                     ` Ioannis Vranos
2005-03-22  1:15                       ` adaworks
2005-03-22 20:22                         ` Frank J. Lhota
2005-03-22 20:27                           ` Robert A Duff
2005-03-22 21:06                             ` red floyd
2005-03-23 14:08                             ` bjarne
2005-03-23 14:45                               ` Robert A Duff
2005-03-23 15:46                               ` Frank J. Lhota
2005-03-24  7:20                         ` Martin Krischik
2005-03-24 18:57                         ` Jerry Coffin
2005-03-08 15:31               ` Peter Amey
2005-03-08 18:16                 ` Pascal Obry
2005-03-09  0:44                   ` Ioannis Vranos
2005-03-09  8:52                     ` Pascal Obry
2005-03-09  9:49                       ` Ioannis Vranos
2005-03-09 10:07                         ` Pascal Obry
2005-03-09 11:32                           ` Ioannis Vranos
2005-03-09 13:34                             ` Peter Amey
2005-03-09 11:17                         ` Georg Bauhaus
2005-03-09 14:24                           ` Falk Tannhäuser
2005-03-09 14:56                             ` Georg Bauhaus
2005-03-10 10:45                               ` Falk Tannhäuser
2005-03-10 14:25                                 ` Georg Bauhaus
2005-03-10 14:31                                   ` Georg Bauhaus
2005-03-10  4:31                             ` Ioannis Vranos
2005-03-10  4:42                               ` Ioannis Vranos
2005-03-22  1:43                             ` adaworks
2005-03-22  4:02                               ` Ioannis Vranos
2005-03-22  9:49                                 ` Georg Bauhaus
2005-03-22 20:03                                   ` Ioannis Vranos
2005-03-22 22:00                                     ` Georg Bauhaus
2005-03-23  9:00                                       ` Ioannis Vranos
2005-03-23  9:11                                         ` Pascal Obry
2005-03-23 10:09                                           ` Ioannis Vranos
2005-03-23 10:16                                             ` Pascal Obry
2005-03-23 10:36                                               ` Ioannis Vranos
2005-03-23 10:47                                                 ` Pascal Obry
2005-03-23 11:00                                                   ` Ioannis Vranos
2005-03-23 12:02                                                     ` Pascal Obry
2005-03-23 19:57                                                       ` Ioannis Vranos
2005-03-23 20:22                                                         ` Matthew Heaney
2005-03-24  2:06                                                         ` Jim Rogers
2005-03-24  2:36                                                           ` Matthew Heaney
2005-03-23 11:15                                                 ` Georg Bauhaus
2005-03-23 11:20                                                   ` Ioannis Vranos
2005-03-23 11:24                                                     ` Ioannis Vranos
2005-03-23 13:58                                                       ` fabio de francesco
2005-03-23 20:14                                                         ` Ioannis Vranos
2005-03-24  2:17                                                           ` Jim Rogers
2005-03-24  2:38                                                             ` Ioannis Vranos
2005-03-24  2:50                                                               ` Jim Rogers
2005-03-24  3:23                                                                 ` Ioannis Vranos
2005-03-24  3:28                                                                   ` Ioannis Vranos
2005-03-24  4:26                                                                     ` Georg Bauhaus
2005-03-24  4:43                                                                   ` Georg Bauhaus
2005-03-24 11:33                                                                   ` Martin Krischik
2005-03-25  1:14                                                                     ` Ioannis Vranos
2005-03-25  9:56                                                                       ` Martin Krischik
2005-03-24 18:17                                                                   ` adaworks
2005-03-24 18:37                                                             ` Pascal Obry
2005-03-24 19:41                                                               ` jimmaureenrogers
2005-03-24 14:55                                                           ` fabio de francesco
2005-03-25  1:34                                                             ` Ioannis Vranos
2005-03-25  2:01                                                               ` Dr. Adrian Wrigley
2005-03-24  2:07                                                       ` Matthew Heaney
2005-03-23 11:25                                                 ` Dmitry A. Kazakov
2005-03-23 20:19                                                   ` Ioannis Vranos
2005-03-24  1:58                                                 ` Matthew Heaney
2005-03-25  0:47                                                 ` Chad  R. Meiners
2005-03-25  1:54                                                   ` Ioannis Vranos
2005-03-29  9:26                                               ` Alex R. Mosteo
2005-03-23 18:24                                             ` adaworks
2005-03-23 12:52                                         ` Georg Bauhaus
2005-03-23 20:53                                           ` Ioannis Vranos
2005-03-23 23:01                                             ` Georg Bauhaus
2005-03-24  1:22                                               ` Ioannis Vranos
2005-03-24  2:19                                                 ` Georg Bauhaus
2005-03-24  2:47                                                   ` Ioannis Vranos
2005-03-24 21:10                                                     ` T Beck
2005-03-25  1:02                                                       ` Georg Bauhaus
2005-03-25  2:19                                                         ` Ioannis Vranos
2005-03-25 19:37                                                           ` Georg Bauhaus
2005-03-25 21:01                                                             ` Dr. Adrian Wrigley
2005-03-25 21:16                                                               ` Hyman Rosen
2005-03-26  2:22                                                               ` adaworks
2005-03-26  6:09                                                             ` Ioannis Vranos
2005-03-26  6:13                                                               ` Ioannis Vranos
2005-03-26  9:31                                                             ` Martin Krischik
2005-03-28  2:50                                                               ` Hyman Rosen
2005-03-29  8:54                                                                 ` C++ language support Martin Krischik
2005-03-29  9:11                                                                   ` Alf P. Steinbach
2005-03-29 15:13                                                                     ` Martin Krischik
2005-03-23 13:43                                         ` Teaching new tricks to an old dog (C++ -->Ada) Vinzent 'Gadget' Hoefler
2005-03-24 11:24                                         ` Peter Amey
2005-03-24 11:55                                           ` Ioannis Vranos
2005-03-24 12:50                                             ` Vinzent 'Gadget' Hoefler
2005-03-22 20:50                                   ` Ioannis Vranos
2005-03-22 21:55                                     ` Georg Bauhaus
2005-03-23  9:02                                       ` Ioannis Vranos
2005-03-23 10:28                                         ` Vinzent 'Gadget' Hoefler
2005-03-23 10:53                                           ` Ioannis Vranos
2005-03-23 13:00                                             ` Vinzent 'Gadget' Hoefler
2005-03-23 11:06                                         ` Georg Bauhaus
2005-03-23 11:18                                           ` Ioannis Vranos
2005-03-23 13:22                                             ` Georg Bauhaus
2005-03-23 21:24                                               ` Ioannis Vranos
2005-03-23 21:50                                                 ` Georg Bauhaus
2005-03-24  0:49                                                   ` Ioannis Vranos
2005-03-24  2:46                                             ` Matthew Heaney
2005-03-22 16:19                                 ` fabio de francesco
2005-03-22 20:17                                   ` Ioannis Vranos
2005-03-23 18:35                                     ` adaworks
2005-03-23 18:45                                       ` Martin Dowie
2005-03-23 20:59                                         ` Ioannis Vranos
2005-03-23 21:39                                       ` Robert A Duff
2005-03-24  2:42                                       ` Wes Groleau
2005-03-24  2:54                                         ` Ioannis Vranos
2005-03-24  3:15                                           ` Wes Groleau
2005-03-24  3:30                                             ` Ioannis Vranos
2005-03-24  6:01                                               ` Jerry Coffin
2005-03-24  4:46                                             ` Jerry Coffin
2005-03-25  4:44                                               ` Wes Groleau
2005-03-24  3:21                                         ` Ed Falis
2005-03-24  7:24                                         ` Dmitry A. Kazakov
2005-03-24 10:47                                       ` Martin Krischik
2005-03-24 11:56                                         ` Dmitry A. Kazakov
2005-03-24 13:38                                           ` Martin Krischik
2005-03-24 15:03                                             ` Dmitry A. Kazakov
2005-03-25  9:50                                               ` Martin Krischik
2005-03-25 11:01                                                 ` Dmitry A. Kazakov
2005-03-25 13:55                                                   ` Martin Krischik
2005-03-25  2:35                                             ` Ioannis Vranos
2005-03-25  3:16                                             ` Ioannis Vranos
2005-03-24 11:59                                         ` Ioannis Vranos
2005-03-24 12:54                                           ` Vinzent 'Gadget' Hoefler
2005-03-25  2:38                                             ` Ioannis Vranos
2005-03-24 13:36                                           ` Martin Krischik
2005-03-24 15:43                                             ` Julián Albo
2005-03-25  9:39                                               ` Martin Krischik
2005-03-25  9:25                                         ` Martin Krischik
2005-03-23 18:12                                 ` adaworks
2005-03-23 21:02                                   ` Ioannis Vranos
2005-03-24  0:01                                     ` adaworks
2005-03-24  1:03                                       ` Ioannis Vranos
2005-03-26 22:56                                       ` Owen Jacobson
2005-03-10 13:16                         ` Larry Kilgallen
2005-03-25  4:07                         ` Larry Kilgallen
2005-03-11  3:00                       ` fmdf
2005-03-11 22:20                         ` Wes Groleau
2005-03-08 18:33                 ` CTips
2005-03-08 18:46                   ` Pascal Obry
2005-03-08 20:10                     ` CTips
2005-03-08 20:44                       ` Pascal Obry
2005-03-08 21:21                       ` Georg Bauhaus
2005-03-08 21:48                       ` Georg Bauhaus
2005-03-08 19:24                   ` Larry Kilgallen
2005-03-08 19:31                   ` Dmitry A. Kazakov
2005-03-08 20:13                     ` CTips
2005-03-08 20:38                       ` Martin Dowie
2005-03-09  2:43                         ` CTips
2005-03-09  4:34                           ` Jim Rogers
2005-03-09  5:46                             ` CTips
2005-03-09  6:48                               ` Martin Dowie
2005-03-09  9:24                                 ` Martin Dowie
2005-03-09 15:39                                 ` CTips
2005-03-09 16:37                                   ` Pascal Obry
2005-03-09 17:01                                 ` Gautier
2005-03-09  9:08                               ` Pascal Obry
2005-03-09 16:09                                 ` CTips
2005-03-09 16:33                                   ` Pascal Obry
2005-03-09 22:34                                     ` Ludovic Brenta
2005-03-10  7:19                                       ` Pascal Obry
2005-03-10  0:57                                     ` Wes Groleau
2005-03-10  7:24                                       ` Pascal Obry
2005-03-10 22:22                                         ` Wes Groleau
2005-03-11  7:05                                           ` Pascal Obry
2005-03-10 22:28                                         ` Wes Groleau
2005-03-11 22:06                                           ` Robert A Duff
2005-03-11 22:44                                             ` Wes Groleau
2005-03-11  4:00                                     ` fabio de francesco
2005-03-11  4:20                                       ` fabio de francesco
2005-03-11  7:26                                       ` Pascal Obry
2005-03-09 16:48                                 ` Adrien Plisson
2005-03-09 11:42                               ` Georg Bauhaus
2005-03-09 12:06                                 ` Pascal Obry
2005-03-10  1:47                                 ` CTips
2005-03-10 16:39                                   ` Georg Bauhaus
2005-03-11  6:20                                     ` CTips
2005-03-12  7:27                                       ` Georg Bauhaus
2005-03-12 13:56                                         ` CTips
2005-03-13  2:33                                           ` Georg Bauhaus
2005-03-14 15:38                                           ` Dr. Adrian Wrigley
2005-03-10 23:07                                   ` Randy Brukardt
2005-03-09 14:47                               ` Ed Falis
2005-03-09 19:27                               ` jimmaureenrogers
2005-03-10  2:09                                 ` CTips
2005-03-10  2:35                                   ` jimmaureenrogers
2005-03-11  4:58                                     ` 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada)) CTips
2005-03-11 12:18                                       ` Jean-Pierre Rosen
2005-03-11 14:00                                         ` CTips
2005-03-11 18:53                                           ` Pascal Obry
2005-03-11 19:24                                             ` CTips
2005-03-11 19:38                                               ` Willem
2005-03-12  8:37                                               ` Georg Bauhaus
2005-03-12 17:29                                                 ` CTips
2005-03-12 18:38                                                   ` Martin Dowie
2005-03-12 19:36                                                     ` CTips
2005-03-14 10:38                                                       ` Martin Dowie
2005-03-14 22:15                                                       ` Randy Brukardt
2005-03-15  1:50                                                         ` CTips
2005-03-15  6:54                                                           ` Randy Brukardt
2005-03-13  3:17                                                   ` Jim Rogers
2005-03-13  3:42                                                     ` Arthur J. O'Dwyer
2005-03-13  6:59                                                       ` jimmaureenrogers
2005-03-14  0:48                                                         ` Arthur J. O'Dwyer
2005-03-21  5:59                                                           ` Dave Thompson
2005-03-15 18:37                                                       ` C: [] vs * (was: 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada))) Programmer Dude
2005-03-15 21:29                                                         ` Arthur J. O'Dwyer
2005-03-16  0:08                                                           ` Programmer Dude
2005-03-13  4:10                                                     ` 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada)) CTips
2005-03-13  7:06                                                       ` jimmaureenrogers
2005-03-13  9:01                                                       ` fabio de francesco
2005-03-13 10:31                                                       ` Georg Bauhaus
2005-03-13 11:04                                                         ` Georg Bauhaus
2005-03-13 13:47                                                         ` Marin David Condic
2005-03-13 19:22                                                           ` Georg Bauhaus
2005-03-13 10:37                                                       ` Georg Bauhaus
2005-03-13 14:54                                                       ` Jim Rogers
2005-03-15  8:56                                                   ` 10 rules for benchmarking Vinzent 'Gadget' Hoefler
2005-03-14 15:35                                               ` 10 rules for benchmarking (was Re: Teaching new tricks to an old dog (C++ -->Ada)) Gautier
2005-03-14 16:19                                                 ` CTips
2005-03-14 17:40                                                   ` Pascal Obry
2005-03-14 20:41                                                   ` Robert A Duff
2005-03-15  1:45                                                     ` CTips
2005-03-12  7:16                                           ` Georg Bauhaus
2005-03-12 11:55                                             ` Willem
2005-03-13  1:18                                               ` Georg Bauhaus
2005-03-12 13:39                                             ` CTips
2005-03-13  4:37                                               ` Georg Bauhaus
2005-03-11 14:34                                         ` Willem
2005-03-11 16:28                                           ` Jean-Pierre Rosen
2005-03-11 18:33                                             ` Willem
2005-03-11 23:04                                         ` 10 rules for benchmarking (was Re: Teaching new tricks to anold " infobahn
2005-03-11 18:50                                       ` 10 rules for benchmarking (was Re: Teaching new tricks to an old " Pascal Obry
2005-03-11 19:14                                         ` CTips
2005-03-11 19:42                                           ` REH
2005-03-11 20:36                                             ` CTips
2005-03-11 20:48                                               ` REH
2005-03-11 21:03                                                 ` Willem
2005-03-11 21:17                                                 ` REH
2005-03-11 23:11                                                 ` CTips
2005-03-12  1:14                                       ` Jim Rogers
2005-03-12  2:32                                         ` CTips
2005-03-12  4:05                                           ` Jim Rogers
2005-03-12 11:00                                             ` CTips
2005-03-12 12:54                                               ` jimmaureenrogers
2005-03-12  2:33                                         ` CTips
2005-03-12  9:30                                           ` Aslan Kral
2005-03-12 12:47                                             ` Aslan Kral
2005-03-12 13:16                                               ` Jim Rogers
2005-03-12 13:29                                                 ` Aslan Kral
2005-03-12 14:37                                                   ` Jim Rogers
2005-03-12 14:45                                       ` 10 rules for benchmarking Martin Eisenberg
2005-03-12 12:52                                     ` Teaching new tricks to an old dog (C++ -->Ada) Willem
2005-03-10  3:59                                   ` Wes Groleau
2005-03-10 14:34                                   ` Arnold
2005-03-13 16:35                               ` 10 rules for benchmarking (was Re: Teaching new tricks to an Larry Kilgallen
2005-03-09 22:30                           ` Teaching new tricks to an old dog (C++ -->Ada) Randy Brukardt
2005-03-08 20:54                       ` Georg Bauhaus
2005-03-08 20:59                       ` Dmitry A. Kazakov
2005-03-09  2:51                         ` CTips
2005-03-09  9:00                           ` Dmitry A. Kazakov
2005-03-08 21:07                       ` Pascal Obry
2005-03-12 10:43                         ` Simon Wright
2005-03-12 11:11                           ` Simon Wright
2005-03-12 17:36                           ` CTips
2005-03-12 23:06                             ` Robert A Duff
2005-03-09  9:12                       ` Pascal Obry
2005-03-11 21:37                       ` Robert A Duff
2005-03-08 20:23                     ` Larry Kilgallen
2005-03-09  1:18                   ` Jim Rogers
2005-03-09  9:14                     ` Dmitry A. Kazakov
2005-03-10 23:04                   ` Robert A Duff
2005-03-09 14:07                 ` Hans Malherbe
2005-03-09 14:52                   ` Martin Dowie
2005-03-09 15:20                     ` Alex R. Mosteo
2005-03-09 15:20                       ` Lutz Donnerhacke
2005-03-09 19:51                       ` Mark Lorenzen
2005-03-10 10:11                         ` Alex R. Mosteo
2005-03-10 21:22                           ` Mark Lorenzen
2005-03-09 22:43                       ` Randy Brukardt
2005-03-10 10:13                         ` Alex R. Mosteo
2005-03-10  2:30                     ` Ioannis Vranos
2005-03-10  4:25                       ` Jim Rogers
2005-03-10  4:41                         ` Ioannis Vranos
2005-03-10  8:05                           ` Jim Rogers
2005-03-10  9:40                             ` Ioannis Vranos
2005-03-10 10:28                               ` Georg Bauhaus
2005-03-10 10:51                                 ` Ioannis Vranos
2005-03-10 12:04                                   ` Georg Bauhaus
2005-03-10 12:18                                     ` Ioannis Vranos
2005-03-10 13:13                                       ` Georg Bauhaus
2005-03-10 13:44                                         ` Ioannis Vranos
2005-03-10 13:32                                       ` Marius Amado Alves
2005-03-12 20:30                                         ` Robert A Duff
2005-03-12 20:39                                           ` Ed Falis
2005-03-13  3:20                                           ` Larry Elmore
2005-03-13  4:41                                           ` Marius Amado Alves
2005-03-13 23:53                                             ` Robert A Duff
2005-03-10 17:35                               ` Pascal Obry
2005-03-11  4:23                                 ` Ioannis Vranos
2005-03-11  7:28                                   ` Pascal Obry
2005-03-11 12:00                                   ` Georg Bauhaus
2005-03-10 23:25                         ` Randy Brukardt
2005-03-09 14:55                   ` Pascal Obry
2005-03-09 15:23                     ` Ed Falis
2005-03-09 15:55                       ` Georg Bauhaus
2005-03-09 16:59                         ` Ed Falis
2005-03-12 14:16                     ` Robert A Duff
2005-03-09 15:23                   ` Adrien Plisson
2005-03-09 15:33                   ` Georg Bauhaus
2005-03-09 15:39                     ` Pascal Obry
2005-03-09 16:43                       ` Marius Amado Alves
     [not found]                         ` <422f2de1$0$181$afc38c87@>
2005-03-09 17:40                           ` Pascal Obry
2005-03-09 17:00                       ` Georg Bauhaus
2005-03-09 17:31                       ` Falk Tannhäuser
2005-03-09 17:43                         ` Pascal Obry
2005-03-10  4:12                           ` Ioannis Vranos
2005-03-10  8:23                     ` Hans Malherbe
2005-03-09 15:56                   ` jimmaureenrogers [this message]
2005-03-09 22:52                     ` Randy Brukardt
2005-03-10  3:36                     ` Wes Groleau
2005-03-10  4:00                       ` Jerry Coffin
2005-03-10  4:08                         ` Wes Groleau
2005-03-18  8:22                           ` Jerry Coffin
2005-03-18 12:39                             ` Ioannis Vranos
2005-03-10  4:16                       ` Ioannis Vranos
2005-03-10 10:11                       ` Falk Tannhäuser
2005-03-12 14:52                         ` Robert A Duff
2005-03-09 17:03                   ` Larry Kilgallen
2005-03-12 14:55                     ` Robert A Duff
2005-03-12 17:59                       ` CTips
2005-03-14 14:48                         ` Dr. Adrian Wrigley
2005-03-14 16:30                           ` Larry Kilgallen
2005-03-14 21:13                           ` CTips
2005-03-15  1:04                             ` Larry Kilgallen
2005-03-14 20:22                         ` Robert A Duff
2005-03-14 22:41                         ` Robert A Duff
2005-03-12 22:31                       ` Larry Kilgallen
2005-03-13 23:38                         ` Robert A Duff
2005-03-14 16:23                           ` Larry Kilgallen
2005-03-14 20:30                             ` Robert A Duff
2005-03-10  3:26                   ` Wes Groleau
2005-03-23 19:53                 ` Jerry Coffin
2005-03-23 20:17                   ` Matthew Heaney
2005-03-23 20:28                     ` Jerry Coffin
2005-03-23 21:41                       ` Matthew Heaney
2005-03-23 21:52                       ` Robert A Duff
2005-03-24  1:50                         ` Jerry Coffin
2005-03-23 20:34                   ` Martin Dowie
2005-03-23 21:13                     ` Ioannis Vranos
2005-03-23 22:01                     ` Robert A Duff
2005-03-24  7:48                       ` Dmitry A. Kazakov
2005-03-26 10:19                       ` Class hierarchy of exceptions (Ada, C++) Ludovic Brenta
2005-03-26 12:36                         ` Dmitry A. Kazakov
2005-03-26 13:55                           ` Georg Bauhaus
2005-03-28 10:32                             ` Ludovic Brenta
2005-03-28 10:24                           ` Ludovic Brenta
2005-03-28 12:29                             ` Dmitry A. Kazakov
2005-03-26 22:33                         ` Ioannis Vranos
2005-03-28 10:49                           ` Ludovic Brenta
2005-03-28 12:08                             ` Ioannis Vranos
2005-03-28 12:21                               ` Ludovic Brenta
2005-03-28 12:29                                 ` Ioannis Vranos
2005-03-29 11:42                                 ` Florian Weimer
2005-03-28 16:02                               ` Pascal Obry
2005-03-28 16:22                                 ` Ioannis Vranos
2005-03-28 16:37                                   ` Ioannis Vranos
2005-03-28 18:15                                     ` Tapio Kelloniemi
2005-03-28 22:02                                       ` Ludovic Brenta
2005-03-30 10:03                                       ` Peter Koch Larsen
2005-03-30 11:35                                         ` Tapio Kelloniemi
2005-03-30 12:01                                           ` Pascal Obry
2005-03-30 12:22                                           ` Ioannis Vranos
2005-03-29  8:43                             ` Jean-Pierre Rosen
2005-03-29 16:57                               ` Pascal Obry
2005-03-30  9:02                                 ` Jean-Pierre Rosen
2005-03-28 22:56                         ` Randy Brukardt
2005-03-24  1:33                     ` Teaching new tricks to an old dog (C++ -->Ada) Jerry Coffin
2005-03-24 18:31                       ` adaworks
2005-03-24 22:59                       ` jayessay
2005-03-25  1:32                         ` Dr. Adrian Wrigley
2005-03-25  6:28                           ` Jerry Coffin
2005-03-25 14:20                             ` Dr. Adrian Wrigley
2005-03-25 21:14                               ` Jerry Coffin
2005-03-26  8:49                                 ` Martin Krischik
2005-03-26 20:29                                   ` Jerry Coffin
2005-03-27  8:18                                     ` Martin Krischik
2005-03-27 10:28                                       ` Ioannis Vranos
2005-03-27 17:53                                         ` adaworks
2005-03-27 14:38                                       ` Jerry Coffin
2005-03-27 15:46                                         ` Dmitry A. Kazakov
2005-03-27 17:50                                         ` Martin Krischik
2005-03-28  5:34                                           ` Jerry Coffin
2005-03-27 19:21                                     ` Chad  R. Meiners
2005-03-28  9:09                                       ` Jerry Coffin
2005-03-29 21:35                                         ` Chad  R. Meiners
2005-03-27 19:41                                     ` Chad  R. Meiners
2005-03-28  6:02                                       ` Jerry Coffin
2005-03-28 23:37                                         ` Chad  R. Meiners
2005-03-29 21:00                                         ` Chad  R. Meiners
2005-03-25 21:33                               ` Hyman Rosen
2005-03-26  7:43                                 ` Dmitry A. Kazakov
2005-03-26  0:58                             ` Wes Groleau
2005-03-26  3:02                           ` jayessay
2005-03-25  3:31                         ` Jeremy J
2005-03-25  4:40                         ` Jared
2005-03-26  3:28                           ` jayessay
2005-03-25 23:45                         ` Jerry Coffin
2005-03-26  3:42                           ` jayessay
2005-03-26  9:02                             ` Jerry Coffin
2005-03-26 21:43                               ` jayessay
2005-03-27  1:26                                 ` Jerry Coffin
2005-03-27  2:24                                   ` jayessay
2005-03-27 19:51                                   ` Chad  R. Meiners
2005-03-28  9:23                                     ` Jerry Coffin
2005-03-29  1:09                                       ` Chad  R. Meiners
2005-03-28  3:02                               ` Hyman Rosen
2005-03-28  6:48                                 ` Paul Mensonides
2005-03-28 21:32                                   ` jayessay
2005-03-29 10:22                                     ` Paul Mensonides
2005-03-29 16:44                                       ` jayessay
2005-03-28 21:24                                 ` jayessay
2005-03-29 10:17                                   ` Paul Mensonides
2005-03-29 16:37                                     ` jayessay
     [not found]                     ` <4241d7a2$0$7285$afc38c87@>
2005-03-24 11:43                       ` Martin Dowie
2005-03-23 21:35                   ` Georg Bauhaus
2005-03-23 21:50                     ` Ioannis Vranos
2005-03-24 13:30                       ` Martin Krischik
2005-03-25  2:48                         ` Ioannis Vranos
2005-03-25  3:27                         ` Ioannis Vranos
2005-03-25  3:27                         ` Ioannis Vranos
2005-03-25 12:42                           ` Rendezvous based mutithreading Martin Krischik
2005-03-25 16:41                             ` Dmitry A. Kazakov
2005-03-25 18:21                               ` Martin Krischik
2005-03-26  7:14                                 ` Dmitry A. Kazakov
2005-03-23 21:37                   ` Teaching new tricks to an old dog (C++ -->Ada) Larry Kilgallen
2005-03-23 23:12                     ` Jerry Coffin
2005-03-24  2:42                       ` Jim Rogers
2005-03-24  3:33                         ` Jerry Coffin
2005-03-24  4:50                       ` Larry Kilgallen
2005-03-24  2:49                     ` Wes Groleau
2005-03-23 22:17                   ` Robert A Duff
2005-03-24  2:16                     ` Jerry Coffin
2005-03-24  3:13                       ` Ed Falis
2005-03-25  1:10                         ` Robert A Duff
2005-03-25  2:33                           ` Jerry Coffin
2005-03-24 13:22                       ` Martin Krischik
2005-03-24 13:16                   ` Martin Krischik
2005-03-24 15:34                     ` Dmitry A. Kazakov
2005-03-24 16:35                     ` Jerry Coffin
2005-03-24 18:34                       ` Pascal Obry
2005-03-24 18:41                       ` adaworks
2005-03-25  1:23                       ` Robert A Duff
2005-03-25  4:58                       ` Wes Groleau
2005-03-25  5:01                       ` Wes Groleau
2005-03-25 21:40                         ` Hyman Rosen
2005-03-26  0:52                           ` Wes Groleau
2005-03-28  3:10                             ` Hyman Rosen
2005-03-25  1:20                     ` Robert A Duff
2005-03-25  2:52                     ` Ioannis Vranos
2005-03-25 18:06                       ` adaworks
2005-03-25 19:12                         ` Ed Falis
2005-03-25  3:14                     ` Ioannis Vranos
2005-03-25  5:04                       ` Wes Groleau
2005-03-25  6:12                         ` Ioannis Vranos
2005-03-08 15:53               ` Larry Kilgallen
2005-03-09  0:57                 ` Ioannis Vranos
2005-03-11  9:28                 ` Peter Koch Larsen
2005-03-10 18:39           ` [OT] " Preben Randhol
2005-03-10 20:55             ` xpyttl
2005-03-10 21:15               ` Ed Falis
2005-03-10 22:39                 ` REH
2005-03-10 23:59                   ` Georg Bauhaus
2005-03-11  8:48                   ` Hans Malherbe
2005-03-11  9:46                   ` [OT] " Dmitry A. Kazakov
2005-03-11 18:01                   ` Dr. Adrian Wrigley
2005-03-11 18:32                     ` Peter Koch Larsen
2005-03-11 19:06                       ` REH
2005-03-11 20:05                       ` Dr. Adrian Wrigley
2005-03-11 20:21                         ` REH
2005-03-11 18:34                     ` Falk Tannhäuser
2005-03-12  8:42                       ` Georg Bauhaus
2005-03-14 14:40                         ` Dr. Adrian Wrigley
2005-03-14 15:05                           ` Ioannis Vranos
2005-03-14 15:42                           ` Peter Koch Larsen
2005-03-14 16:06                           ` Falk Tannhäuser
2005-03-14 17:16                             ` Dr. Adrian Wrigley
2005-03-14 18:43                               ` Ioannis Vranos
2005-03-14 19:29                                 ` Dr. Adrian Wrigley
2005-03-14 20:14                                   ` Dmitry A. Kazakov
2005-03-14 20:27                                     ` Georg Bauhaus
2005-03-14 21:02                                     ` Robert A Duff
2005-03-14 21:46                                       ` Dr. Adrian Wrigley
2005-03-14 23:39                                       ` Hyman Rosen
2005-03-15  0:00                                         ` Robert A Duff
2005-03-15  3:18                                           ` Ed Falis
2005-03-15  9:12                                       ` Dmitry A. Kazakov
2005-03-15 10:51                                         ` Georg Bauhaus
2005-03-15 12:56                                           ` Dmitry A. Kazakov
2005-03-16 11:46                                             ` Georg Bauhaus
2005-03-16 13:31                                               ` Dmitry A. Kazakov
2005-03-16 14:11                                                 ` Georg Bauhaus
2005-03-16 15:16                                                   ` Dmitry A. Kazakov
2005-03-15 13:09                                           ` Dr. Adrian Wrigley
2005-03-14 20:17                                   ` Ioannis Vranos
2005-03-14 20:17                                   ` Georg Bauhaus
2005-03-14 20:33                                   ` Dr. Adrian Wrigley
2005-03-14 22:47                                     ` Ioannis Vranos
2005-03-15  0:02                                       ` Dr. Adrian Wrigley
2005-03-14 21:02                                   ` kevin  cline
2005-03-14 21:25                                     ` Dr. Adrian Wrigley
2005-03-14 23:30                                       ` Hyman Rosen
2005-03-14 23:46                               ` [OT] " Hyman Rosen
2005-03-15  0:10                                 ` Dr. Adrian Wrigley
2005-03-15  8:59                                   ` Dmitry A. Kazakov
2005-03-15 12:01                                   ` Hans Malherbe
2005-03-15 12:54                                     ` Magic ordering Marius Amado Alves
2005-03-15 13:16                                       ` Dmitry A. Kazakov
2005-03-15 13:53                                         ` Marius Amado Alves
2005-03-15 15:08                                           ` Dmitry A. Kazakov
2005-03-15 16:21                                             ` Marius Amado Alves
2005-03-15 17:52                                               ` Dmitry A. Kazakov
2005-03-16 20:03                                         ` Robert A Duff
2005-03-16 20:54                                           ` Dmitry A. Kazakov
2005-03-23 13:49                           ` [OT] Re: Teaching new tricks to an old dog (C++ -->Ada) Matthew Heaney
2005-03-23 15:27                             ` Chris Jefferson
2005-03-11 19:01                     ` REH
2005-03-11 19:43                       ` Ioannis Vranos
2005-03-11 20:03                         ` Ioannis Vranos
2005-03-11 20:08                         ` REH
2005-03-12 11:09                           ` Peter Koch Larsen
2005-03-11 20:14                         ` Marius Amado Alves
2005-03-11 19:23                     ` Ioannis Vranos
2005-03-11 19:54                       ` REH
2005-03-12  6:10                         ` Ioannis Vranos
2005-03-12  6:29                           ` Ioannis Vranos
2005-03-12  6:35                             ` Ioannis Vranos
2005-03-12 12:16                               ` REH
2005-03-12 12:57                                 ` Ioannis Vranos
2005-03-12 13:26                                   ` REH
2005-03-12 17:46                                 ` CTips
2005-03-12 18:40                                   ` Martin Krischik
2005-03-12 19:28                                     ` Ioannis Vranos
2005-03-13  9:29                                       ` Martin Krischik
2005-03-13 15:45                                         ` Ioannis Vranos
2005-03-13 17:04                                           ` Martin Krischik
2005-03-12 18:51                                   ` Jeff C
2005-03-12 18:53                                   ` Ed Falis
2005-03-12 19:40                                     ` CTips
2005-03-13  8:43                                     ` Martin Krischik
2005-03-12 19:14                                   ` Robert A Duff
2005-03-12 21:48                                   ` Martin Dowie
2005-03-12 23:17                                   ` REH
2005-03-21 21:07                               ` Robert A Duff
2005-03-21 23:07                                 ` Ioannis Vranos
2005-03-24  2:24                                   ` Matthew Heaney
2005-03-23 17:26                             ` adaworks
2005-03-23 18:53                               ` Dr. Adrian Wrigley
2005-03-23 21:39                                 ` Ioannis Vranos
2005-03-23 21:55                                   ` REH
2005-03-24  1:14                                   ` Dr. Adrian Wrigley
2005-03-24  1:44                                     ` Ioannis Vranos
2005-03-24  2:26                                       ` Ioannis Vranos
2005-03-12 12:40                           ` REH
     [not found]                         ` <1110607809.837000@at <1110655701.196383@athnrd02>
2005-03-13  3:21                           ` Greg Comeau
2005-03-13  7:48                             ` Ioannis Vranos
2005-03-13 14:20                               ` Greg Comeau
2005-03-13 16:33                         ` Larry Kilgallen
2005-03-12 11:56                       ` Martin Krischik
2005-03-10 21:18               ` Pascal Obry
2005-03-11  4:36                 ` Ioannis Vranos
2005-03-11  7:39                   ` Pascal Obry
2005-03-11  4:58                 ` Jerry Coffin
2005-03-11  7:32                   ` Pascal Obry
2005-03-11  7:48                     ` Ioannis Vranos
2005-03-11 18:30                       ` Pascal Obry
2005-03-11 19:28                         ` Ioannis Vranos
2005-03-11 22:34                     ` Wes Groleau
2005-03-11 22:27                   ` Wes Groleau
2005-03-11 23:25                   ` Ludovic Brenta
2005-03-12 11:20                     ` Martin Krischik
2005-03-10 22:18               ` [OT] " Paul E. Bennett
2005-03-11  2:52                 ` Larry Kilgallen
2005-03-11 22:46                   ` Wes Groleau
2005-03-10 22:35               ` Wes Groleau
2005-03-11  9:38                 ` Peter Amey
2005-03-10 23:37               ` Martin Dowie
2005-03-10 23:58                 ` Georg Bauhaus
2005-03-05 20:55         ` Simon Wright
2005-03-05 22:05         ` Paul E. Bennett
2005-03-06 10:09           ` Martin Krischik
2005-03-06 11:39             ` Paul E. Bennett
2005-03-06 12:35               ` Mark Lorenzen
2005-03-06 13:26               ` Ludovic Brenta
2005-03-07 10:03               ` Martin Krischik
2005-03-07 23:35                 ` Ludovic Brenta
2005-03-06 21:09             ` Wouter van Ooijen (www.voti.nl)
2005-03-07  9:58               ` Martin Krischik
2005-03-05 16:16       ` Mark Lorenzen
2005-03-05 16:42       ` Martin Krischik
2005-03-05 20:14         ` Ioannis Vranos
2005-03-05 20:22           ` Ludovic Brenta
2005-03-05 21:32           ` Martin Krischik
2005-03-05 19:54       ` Larry Kilgallen
2005-03-05 22:33         ` Peter Koch Larsen
2005-03-06  1:07           ` Martin Dowie
2005-03-06  4:47           ` Larry Kilgallen
2005-03-06  9:22             ` Peter Koch Larsen
2005-03-06  9:42               ` Dmitry A. Kazakov
2005-03-06 13:16               ` Larry Kilgallen
2005-03-06 21:14               ` Wouter van Ooijen (www.voti.nl)
2005-03-06 23:19               ` Wes Groleau
2005-03-06 11:44             ` Paul E. Bennett
2005-03-06 12:54               ` Leif Roar Moldskred
2005-03-06 21:15               ` Wouter van Ooijen (www.voti.nl)
2005-03-14 17:36               ` jtg
2005-03-06  9:57           ` Martin Krischik
2005-03-06 21:13           ` Wouter van Ooijen (www.voti.nl)
2005-03-06 20:45       ` Wouter van Ooijen (www.voti.nl)
2005-03-05 17:14   ` Pascal Obry
2005-03-07 11:45     ` Vinzent 'Gadget' Hoefler
2005-03-07 19:01       ` Pascal Obry
2005-03-05 19:52   ` Larry Kilgallen
2005-03-05 20:24     ` xpyttl
2005-03-06 20:36       ` Wouter van Ooijen (www.voti.nl)
2005-03-10 18:26   ` Preben Randhol
2005-03-05 14:39 ` Dmitry A. Kazakov
2005-03-05 15:03 ` Matthias Kaeppler
2005-03-05 16:26   ` Mark Lorenzen
2005-03-05 20:19     ` Ioannis Vranos
2005-03-05 20:24       ` Mark Lorenzen
2005-03-06 20:40         ` Wouter van Ooijen (www.voti.nl)
2005-03-07  6:14           ` Mark A. Biggar
2005-03-05 20:28       ` Ludovic Brenta
2005-03-05 21:14         ` Paul E. Bennett
2005-03-05 22:08       ` Larry Kilgallen
2005-03-05 22:37         ` Peter Koch Larsen
2005-03-06  9:40           ` Martin Krischik
2005-03-06  1:49       ` Larry Elmore
2005-03-06  1:46         ` Ioannis Vranos
2005-03-06 20:38     ` Wouter van Ooijen (www.voti.nl)
2005-03-05 15:24 ` Jeff C
2005-03-05 19:11   ` Ed Falis
2005-03-10 18:25 ` Preben Randhol
2005-03-12 22:45 ` dave
2005-03-12 22:56   ` Ioannis Vranos
2005-03-13  2:18     ` dave
2005-03-14 17:33 ` jtg
replies disabled

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