00001 #ifndef __SP_FILE_H__
00002 #define __SP_FILE_H__
00003 #include "stm_export.h"
00004 #include <string>
00005
00006 namespace spectral
00007 {
00008 class Image;
00009 class Modules;
00010
00011 Image STM_EXPORT *SpLoadImage(Modules &, const std::string &);
00012 void STM_EXPORT SpSaveImage(Modules &, Image *, const std::string &);
00013
00014 }
00015 #endif