Make show audio work on the whole DCP, not individual content.
[dcpomatic.git] / src / lib / md5_digester.h
index d5b6a9c4c12a8c26850b80ff700bdcff5cb27daa..8ae7e81cfe99e2078d8dd67dd2bbe0fdc2dc5117 100644 (file)
 
 */
 
-#include <string>
+#include <openssl/md5.h>
 #include <boost/noncopyable.hpp>
 #include <boost/optional.hpp>
-#include <openssl/md5.h>
+#include <string>
 
 class MD5Digester : public boost::noncopyable
 {
@@ -34,6 +34,8 @@ public:
        void add (T data) {
                add (&data, sizeof (T));
        }
+
+       void add (std::string const & s);
        
        std::string get () const;