home *** CD-ROM | disk | FTP | other *** search
- #include "PictureFormatManagerPtr.h"
- #include "PictureFormatManager.h"
- #include "safe_new.h"
-
- PictureFormatManager * PictureFormatManagerPtr::pfm= 0;
-
-
- void PictureFormatManagerPtr::destroy()
- {
- delete pfm; pfm = 0;
- }
-
-
- PictureFormatManager * PictureFormatManagerPtr::operator->()const
- {
- if( !pfm )
- {
- pfm = new PictureFormatManager();
- }
- return pfm;
- }
-