Author: post
Date: 2012-07-12 15:35:45 +0200 (Thu, 12 Jul 2012)
New Revision: 437

Modified:
   RawSpeed/RawDecoder.cpp
Log:
Add missing function.

Modified: RawSpeed/RawDecoder.cpp
===================================================================
--- RawSpeed/RawDecoder.cpp     2012-07-10 07:27:56 UTC (rev 436)
+++ RawSpeed/RawDecoder.cpp     2012-07-12 13:35:45 UTC (rev 437)
@@ -328,4 +328,17 @@
   }
 }
 
+void RawDecoder::checkSupport(CameraMetaData *meta)
+{
+  try {
+    return checkSupportInternal(meta);
+  } catch (TiffParserException &e) {
+    ThrowRDE("%s", e.what());
+  } catch (FileIOException &e) {
+    ThrowRDE("%s", e.what());
+  } catch (IOException &e) {
+    ThrowRDE("%s", e.what());
+  }
+}
+
 } // namespace RawSpeed
\ No newline at end of file


_______________________________________________
Rawstudio-commit mailing list
[email protected]
http://rawstudio.org/cgi-bin/mailman/listinfo/rawstudio-commit

Reply via email to