home *** CD-ROM | disk | FTP | other *** search
/ Game.EXE 2002 April / Game.EXE_04_2002.iso / Alawar / PictureFormatManagerPtr.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-02-18  |  308 b   |  14 lines

  1. #ifndef PICTUREFORMATMANAGERPTR_H
  2. #define PICTUREFORMATMANAGERPTR_H
  3.  
  4. #include "PictureFormatManager.h"
  5.  
  6. class PictureFormatManagerPtr
  7. {
  8. public:    
  9.     PictureFormatManager * operator->()const;
  10.     static void destroy();
  11. private:    
  12.     static PictureFormatManager * pfm;
  13. };
  14. #endif //PICTUREFORMATMANAGERPTR_H