home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / adav313.zip / gnat-3_13p-os2-bin-20010916.zip / emx / gnat / examples / ex6_if.adb < prev    next >
Text File  |  2000-07-19  |  430b  |  18 lines

  1. with Gnat.IO; use Gnat.IO;
  2. package body Ex6_If is
  3.    package body Ada_Extension is
  4.  
  5.       procedure Overridden (This : in C) is
  6.       begin
  7.          Put ("in Ex6_If.Ada_Extension.Overridden, a_value = ");
  8.          Put (This.A_Value);
  9.          Put (", b_value = ");
  10.          Put (This.B_Value);
  11.          Put (", c_value = ");
  12.          Put (This.C_Value);
  13.          New_Line;
  14.       end Overridden;
  15.  
  16.    end Ada_Extension;
  17. end Ex6_If;
  18.