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

  1. /* NOSHIP */
  2. #ifndef _OFORMPRV_
  3.   #define _OFORMPRV_
  4. /*******************************************************************************
  5. * FILE NAME: oformprv.hpp                                                      *
  6. *                                                                              *
  7. * DESCRIPTION:                                                                 *
  8. *   Declaration of the class(es):                                              *
  9. *     ODFFormPartPrivateData - This class encapsulates private data and functions*
  10. *                        used by the ODFFormPart class.  An object of this class *
  11. *                        is created in the ODFFormPart 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. class ODFFormPartPrivateData : public IBase {
  27. public:
  28.   ODFFormPartPrivateData() : dummy (0)
  29.  { };
  30.  
  31.  
  32. private:
  33.   ODFFormPartPrivateData (const ODFFormPartPrivateData&);
  34.   ODFFormPartPrivateData& operator= (const ODFFormPartPrivateData&);
  35.   int dummy;
  36. };    // ODFFormPartPrivateData
  37.  
  38. /*----------------------------------------------------------------------------*/
  39. /* Resume compiler default packing and warning messages.                      */
  40. /*----------------------------------------------------------------------------*/
  41. #pragma pack()
  42. #pragma info(restore)
  43.  
  44. #endif /* _OFORMPRV_ */
  45.