00001
00002
00008
00009
00011
00012 #ifndef __O_SESSAME_BINARY_CONVERTER_H__
00013 #define __O_SESSAME_BINARY_CONVERTER_H__
00014 #include "Converter.h"
00015 #include "Matrix.h"
00016 #include "ConversionForm.h"
00017
00018 namespace O_SESSAME {
00019
00025 class BinaryConverter : public Converter
00026 {
00027 public:
00028 BinaryConverter(const string& _newFilename, string _newExtension ="", string _newFileLocation = "");
00029
00030
00031 virtual void Export(const ConversionForm& _exportConvForm);
00032 virtual Matrix Import(const ConversionForm& _importConvForm);
00033 private:
00034
00035 };
00036 }
00037
00038 #endif
00039
00040
00041
00042
00043
00044
00045