home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 10 / ioProg_10.iso / soft / optima / hpp.z / TCDATA.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-25  |  989 b   |  30 lines

  1. /* %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  2.    %     Copyright (C) 1995, by Watcom.  All rights  reserved.           %
  3.    %     No part of this software may be reproduced or used in any form  %
  4.    %     or by any means - graphic, electronic or mechanical, including  %
  5.    %     photocopying, recording, taping or information storage and      %
  6.    %     retrieval systems - except with the written permission of       %
  7.    %     Watcom.                             %
  8.    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  9.   
  10.     Date    By        Reason
  11.     ----    --        ------
  12.     09/09/95    Alan Shi        Initial Implementation
  13. */
  14.  
  15. #ifndef _TABCONTROLDATA_HPP_INCLUDED
  16. #define _TABCONTROLDATA_HPP_INCLUDED
  17.  
  18. #define ALLOC_SIZE      5
  19.  
  20. class DTFormEditBase;
  21.  
  22. typedef struct TabControlData {
  23.     WString          _tabText;
  24.     WWindow        *_formWinPtr;
  25.     DTFormEditBase  *_formPtr;
  26.     WString          _formName;
  27. } TabControlData;
  28.  
  29. #endif
  30.