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

  1. #ifndef PICTUREFORMATMANAGER_H
  2. #define PICTUREFORMATMANAGER_H
  3. #include "PictureFormat.h"
  4.  
  5. class String;
  6.  
  7. class PictureFormatManager
  8. {
  9. public:    
  10.     virtual ~PictureFormatManager()
  11.     {}
  12.     PictureFormat * create_format(const String & name);
  13. private:    
  14. };
  15. #endif //PICTUREFORMATMANAGER_H