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 / simple_cpp_interface.adb < prev    next >
Text File  |  2000-07-19  |  201b  |  11 lines

  1. package body Simple_Cpp_Interface is
  2.  
  3.    procedure Ada_Method2 (This : in out A; V : Integer) is
  4.    begin
  5.       Method1 (This);
  6.       This.A_Value := V;
  7.    end Ada_Method2;
  8.  
  9. end Simple_Cpp_Interface;
  10.  
  11.