summaryrefslogtreecommitdiff
path: root/src/lib/user_property.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/user_property.h')
-rw-r--r--src/lib/user_property.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/lib/user_property.h b/src/lib/user_property.h
index b27cd4151..a7a6f63da 100644
--- a/src/lib/user_property.h
+++ b/src/lib/user_property.h
@@ -26,15 +26,22 @@
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;