home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / s-atacco.adb < prev    next >
Text File  |  1996-09-28  |  3KB  |  54 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT COMPILER COMPONENTS                         --
  4. --                                                                          --
  5. -- S Y S T E M . A D D R E S S _ T O _ A C C E S S _ C O N V E R S I O N S  --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.3 $                              --
  10. --                                                                          --
  11. --           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          --
  12. --                                                                          --
  13. -- The GNAT library is free software; you can redistribute it and/or modify --
  14. -- it under terms of the GNU Library General Public License as published by --
  15. -- the Free Software  Foundation; either version 2, or (at your option) any --
  16. -- later version.  The GNAT library is distributed in the hope that it will --
  17. -- be useful, but WITHOUT ANY WARRANTY;  without even  the implied warranty --
  18. -- of MERCHANTABILITY  or  FITNESS FOR  A PARTICULAR PURPOSE.  See the  GNU --
  19. -- Library  General  Public  License for  more  details.  You  should  have --
  20. -- received  a copy of the GNU  Library  General Public License  along with --
  21. -- the GNAT library;  see the file  COPYING.LIB.  If not, write to the Free --
  22. -- Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.        --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. with Unchecked_Conversion;
  27. package body System.Address_To_Access_Conversions is
  28.  
  29.    ----------------
  30.    -- To_Address --
  31.    ----------------
  32.  
  33.    function To_Address (Value : Object_Pointer) return Address is
  34.    begin
  35.       if Value = null then
  36.          return Null_Address;
  37.       else
  38.          return Value.all'Address;
  39.       end if;
  40.    end To_Address;
  41.  
  42.    ----------------
  43.    -- To_Pointer --
  44.    ----------------
  45.  
  46.    function To_Pointer (Value : Address) return Object_Pointer is
  47.       function A_To_P is new Unchecked_Conversion (Address, Object_Pointer);
  48.  
  49.    begin
  50.       return A_To_P (Value);
  51.    end To_Pointer;
  52.  
  53. end System.Address_To_Access_Conversions;
  54.