Pick up effect and effect color.
[libdcp.git] / src / util.h
index e4034da26cac7e72f49cdeace5bdd2722dc41e2f..3bbcbabb0057c998c1a85f652393b114698dfdf2 100644 (file)
 
 */
 
+/** @file  src/util.h
+ *  @brief Utility methods.
+ */
+
 #include <string>
 #include <sigc++/sigc++.h>
+#include "types.h"
 
 namespace libdcp {
 
@@ -35,4 +40,8 @@ extern std::string make_uuid ();
  */
 extern std::string make_digest (std::string filename, sigc::signal1<void, float>* progress);
 
+extern std::string content_kind_to_string (ContentKind kind);
+extern ContentKind content_kind_from_string (std::string kind);
+extern bool ends_with (std::string big, std::string little);
+
 }