home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ibmodf.zip / ODFRK.ZIP / OFORMVPR.HPP < prev    next >
Text File  |  1995-03-29  |  2KB  |  45 lines

  1. /* NOSHIP */
  2. #ifndef _OFORMVPRV_
  3.   #define _OFORMVPR_
  4. /*******************************************************************************
  5. * FILE NAME: oformvpr.hpp                                                      *
  6. *                                                                              *
  7. * DESCRIPTION:                                                                 *
  8. *   Declaration of the class(es):                                              *
  9. *     ODFFormViewPrivateData - This class encapsulates private data and functions*
  10. *                        used by the ODFFormView class.  An object of this class *
  11. *                        is created in the ODFFormView constructors.           *
  12. * COPYRIGHT:                                                                   *
  13. *   Licensed Materials - Property of IBM                                       *
  14. *   (C) Copyright IBM Corporation 1992, 1994                                   *
  15. *   All Rights Reserved                                                        *
  16. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  17. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  18. *                                                                              *
  19. *******************************************************************************/
  20.  
  21. /*----------------------------------------------------------------------------*/
  22. /* Align classes on four byte boundary.                                       */
  23. /*----------------------------------------------------------------------------*/
  24. #pragma pack(4)
  25.  
  26. #include <oformv.hpp>
  27.  
  28. class ODFFormViewPrivateData : public IBase {
  29. public:
  30.   ODFFormViewPrivateData()
  31.  { };
  32.  
  33.   ODFFormViewPrivateData (const ODFFormViewPrivateData&);
  34.   ODFFormViewPrivateData& operator= (const ODFFormViewPrivateData&);
  35.   ODFFormView::UpdateMode fUpdateMode;   //AJadd: immediate, onFocusChg, noAutoUpdate
  36. };    // ODFFormViewPrivateData
  37.  
  38. /*----------------------------------------------------------------------------*/
  39. /* Resume compiler default packing and warning messages.                      */
  40. /*----------------------------------------------------------------------------*/
  41. #pragma pack()
  42. #pragma info(restore)
  43.  
  44. #endif /* _OFORMVPR_ */
  45.