home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / IDIOMS.ZIP / 2CONST.C < prev    next >
Text File  |  1991-12-04  |  300b  |  15 lines

  1. /* Copyright (c) 1992 by AT&T Bell Laboratories. */
  2. /* Advanced C++ Programming Styles and Idioms */
  3. /* James O. Coplien */
  4. /* All rights reserved. */
  5.  
  6. static const int SIZE1 = 10;
  7.  
  8. class C {
  9.     static const int SIZE2;
  10.     char vec1[SIZE1];
  11. //    char vec2[SIZE2];
  12. };
  13.  
  14. const int C::SIZE2 = 10;
  15.