home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c221 / 6.ddi / MWHC.006 / 32 < prev    next >
Encoding:
Text File  |  1992-06-07  |  1.1 KB  |  39 lines

  1. #ifndef __RWSTRING_H__
  2. #define __RWSTRING_H__
  3. pragma push_align_members(64);
  4.  
  5. /*
  6.  * RWString: Backwards compatibility declaration
  7.  *
  8.  * $Header:   E:/vcs/rw/rwstring.h_v   1.8   01 Mar 1992 15:43:34   KEFFER  $
  9.  *
  10.  ****************************************************************************
  11.  *
  12.  * Rogue Wave Software, Inc.
  13.  * P.O. Box 2328
  14.  * Corvallis, OR 97339
  15.  *
  16.  * Copyright (C) 1992. This software is subject to copyright 
  17.  * protection under the laws of the United States and other countries.
  18.  *
  19.  ***************************************************************************
  20.  *
  21.  * This file is provided for backwards compatibility.  Note, however, that
  22.  * the copy constructor and assignment operator of RWString used reference
  23.  * semantics while the new RWCString uses copy semantics.
  24.  *
  25.  ***************************************************************************
  26.  *
  27.  * $Log:   E:/vcs/rw/rwstring.h_v  $
  28.  * 
  29.  *    Rev 1.8   01 Mar 1992 15:43:34   KEFFER
  30.  * Now just a typedef to RWCString.
  31.  */
  32.  
  33. #include "rw/cstring.h"
  34.  
  35. typedef RWCString RWString;
  36.  
  37. pragma pop_align_members();
  38. #endif    /* __RWSTRING_H__ */
  39.