home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / powergui / shipapp / appstat / main.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-10-29  |  564 b   |  19 lines

  1. //************************************************************
  2. // Packaging and Performance - Using Static Object Functions 
  3. //
  4. // Copyright (C) 1994, Law, Leong, Love, Olson, Tsuji.
  5. // Copyright (c) 1997 John Wiley & Sons, Inc. 
  6. // All Rights Reserved.
  7. //************************************************************
  8. #include <iostream.h>
  9. #include <istring.hpp>
  10. #include "appstat.hpp"
  11. #include "mytext.h"
  12.  
  13. void main ( )
  14. {
  15.   IString str = AppStatics::englishDLL().loadString(MY_TEXT);
  16.  
  17.   cout << "The resource text is [" << str << "]" << endl;
  18. }
  19.