Questions tagged [ada95]

Use this tag if your question is specific to Ada 95, and you can't use a more recent version of the Ada standard.

Ada 95 is a joint ISO/ANSI standard (ISO-8652:1995) and was published in February 1995

Source

https://en.wikipedia.org/wiki/Ada_(programming_language)#Standardization

16 questions
0
votes
2 answers

What is the best way for implementing something similar to an interface with Ada 95?

I want to implement something similar to an interface using Ada 95 (so the typical OO interfaces are not available). I've done it by using generics and a set of "pointer to method" within a record. The code is below. EDIT: I know that it can be done…
Dan
  • 2,452
  • 20
  • 45
1
2