LAMA
|
00001 00033 #ifndef LAMA_LAMAFILE_HPP_ 00034 #define LAMA_LAMAFILE_HPP_ 00035 00036 // for dll_import 00037 #include <lama/config.hpp> 00038 00039 namespace lama 00040 { 00041 00044 class LAMA_DLL_IMPORTEXPORT LAMAFile 00045 { 00046 public: 00047 00051 enum FileType 00052 { 00056 BINARY, 00060 FORMATTED, 00064 UNFORMATTED, 00068 XDR, 00073 MATRIX_MARKET 00074 }; 00075 00076 LAMAFile( FileType filetype ) : mFileType( filetype ) {} 00077 00078 protected: 00079 00080 FileType mFileType; 00081 }; 00082 00083 } 00084 00085 #endif // LAMA_LAMAFILE_HPP_