home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / thread / pi / pi.hpp < prev   
Text File  |  1996-10-29  |  877b  |  20 lines

  1. #ifndef _PI_
  2. #define _PI_
  3. /**************************************************************
  4. * FILE NAME: pi.hpp                                           *
  5. *                                                             *
  6. * DESCRIPTION:                                                *
  7. *   This file contains the declaration of the function:       *
  8. *     pi - Calculate pi to arbitrary number of digits.        *
  9. *                                                             *
  10. * COPYRIGHT:                                                  *
  11. *   Licensed Materials - Property of Solution Frameworks      *
  12. *   Copyright (C) 1996, Solution Frameworks                   *
  13. *   All Rights Reserved                                       *
  14. **************************************************************/
  15. class IString;
  16.  
  17. IString pi( unsigned digits );
  18.  
  19. #endif // _PI_
  20.