|
Ann. qtada ada interface for Qt4 is available Sorry for bad link. I changed it to ftp and hope now is Ok Leonid ... 23 Jun 2008 05:32
Ann. qtada ada interface for Qt4 is availabble. Ann. QtAda is Ada interface for Qt4 is now available. It was tasted in Windows and Fedora 9 x86_64 with Qt4.x and GPL GNAT 2008. You may download it from http://www.websamba.com/guibuilder Leonid ... 22 Jun 2008 14:15
Ann VAD 7.1 X86_64 binaries Ann. VAD (Visual Ada Developer) 7.1 binaries for X86_64 is available. It was tested in Fedora 9 x86_64 and GPL GNAT 2008 You may download if from http://www.websamba.com/guibuilder Leonid ... 22 Jun 2008 11:11
Returning ranges from a function (was: How to loop (elegant) throug a vector ?) On 20 Cze, 19:12, Stefan Bellon <bel...(a)software-erosion.org> wrote: Now you can do the following: function Get_Range return Integer_Range_Objects.Range_Type is begin return (42 .. 128 => <>); end Get_Range; And then: for I in Get_Range'Range loop ... 23 Jun 2008 08:36
How to build Objects containing itself? Hi! So, here's my next question about object orientation in Ada. In languages like Ruby, C++ or Java, the following construct is possible (here in Java): class State { HashMap<char, State> transitions = new HashMap<char, State>(); } Perhaps you're wondering, what this code is meant to be. Some time a... 21 Jun 2008 02:35
Returning ranges from a function (was: How to loop (elegant) througa vector ?) On Fri, 20 Jun, Reinert Korsnes wrote: -- I want something more beautiful than this loop: for k in 1 .. Positive(X.Length) loop do_something(X.Element(k)); end loop; Sorry to high-jack this thread, but I'd like to comment on a somewhat related topic: For a very long time I was looking... 20 Jun 2008 13:16
Printing with GtkADA I am trying to create ADA programs in windows XP. Therefore I am using GTKAda. I cannot find any reference to how to print the info in a TextView window. I am using the text view window for convienience and have found various possibilities but not how to print or even how to sned something to a windows printer.... 21 Jun 2008 09:41
How to loop (elegant) throug a vector ? I try to learn to use Ada.Containers. Assume the following code: package X_t is new Vectors(Positive,Item_t); use X_t; X : Vector; -- I want something more beautiful than this loop: for k in 1 .. Positive(X.Length) loop do_something(X.Element(k)); end loop; Could anybody suggest... 23 Jun 2008 13:45
GNAT.Serial_Communications ? Hi group, I want to communicate with serial port in Ada. What is the best choice in your opinion? GNAT.Serial_Communications? Where can I find any documentation about this (GCC GNAT Reference Manual says nothing about this)? -- Tomek ... 13 Aug 2008 16:56
another way to shoot yourself in the foot? Consider a very simple code. Suppose we have 1) a Named interface as this --- named.ads --- package Named is type Object is limited interface; function name(this: Object) return String is abstract; end Named; 2) Simple implementation --- Some.ads --- with Named; with Ada.Finalization; use... 10 Jul 2008 13:24 |