USGS

Isis 3.0 Developer's Reference (API)

Home

PhotoModelFactory.h

Go to the documentation of this file.
00001 #ifndef PhotoModelFactory_h
00002 #define PhotoModelFactory_h
00003 
00026 namespace Isis {
00027   class Pvl;
00028   class PhotoModel;
00029 
00066   class PhotoModelFactory {
00067     public:
00068       static PhotoModel *Create(Pvl &pvl);
00069 
00070     private:
00075       PhotoModelFactory() {};
00076 
00078       ~PhotoModelFactory() {};
00079   };
00080 };
00081 
00082 #endif