home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / shipapp / appstat / appstat.hpp < prev    next >
Text File  |  1996-10-29  |  618b  |  29 lines

  1. #ifndef _APPSTAT_
  2. #define _APPSTAT_
  3. //************************************************************
  4. // Packaging and Performance - Using Static Object Functions 
  5. //
  6. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  7. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  8. // All Rights Reserved.
  9. //************************************************************
  10.  
  11. #include <ireslib.hpp>
  12.  
  13. class AppStatics
  14. {
  15. public:
  16. // Destructor for cleanup
  17.   ~AppStatics ();
  18.  
  19. // DLL Accessor function
  20. static IDynamicLinkLibrary
  21.  &englishDLL();
  22.  
  23. private:
  24. static IDynamicLinkLibrary
  25.  *engDLL;
  26. };
  27.  
  28. #endif // _APPSTAT_
  29.