Rename SafeStringStream -> locked_stringstream. Bump deps for removal of stringstream.
[dcpomatic.git] / src / lib / user_property.h
index b27cd4151f3693f6b021ee6d62992fb10df20150..a7a6f63da2336f6eece25b5e4dd994df669cc65f 100644 (file)
 class UserProperty
 {
 public:
+       enum Category {
+               GENERAL,
+               VIDEO,
+               AUDIO,
+               LENGTH
+       };
+
        template <class T>
-       UserProperty (std::string category_, std::string key_, T value_, std::string unit_ = "")
+       UserProperty (Category category_, std::string key_, T value_, std::string unit_ = "")
                : category (category_)
                , key (key_)
                , value (raw_convert<std::string> (value_))
                , unit (unit_)
        {}
 
-       std::string category;
+       Category category;
        std::string key;
        std::string value;
        std::string unit;