home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xobject.h < prev    next >
C/C++ Source or Header  |  1997-08-12  |  845b  |  26 lines

  1. #ifndef __OOL_XOBJECT_H__
  2. #define __OOL_XOBJECT_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XObject                               */
  8. /*                       derived from: -                                     */
  9. /*                        last update: 12/96                                 */
  10. /*                      programmed by: Stefan von Brauk (sbrauk@gwdg.de)     */
  11. /*===========================================================================*/
  12.  
  13.  
  14. #include "xinclude.h"
  15.  
  16.  
  17. class _export_ XObject
  18. {
  19.    protected:
  20.       XObject()  {;}
  21.       virtual ~XObject() {;}
  22. };
  23.  
  24.  
  25. #endif
  26.