X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fuser_property.h;h=ffbb99a5f4b81f1f19f233607eab59241da23715;hb=54af50c3b8e9082f9751e809d63540c51197a4a1;hp=c57cbef3e32d1d30fa9ea21e23cf5286528ea56c;hpb=fa369ef1db0e9f68fdc0145f86ce15446a750af5;p=dcpomatic.git diff --git a/src/lib/user_property.h b/src/lib/user_property.h index c57cbef3e..ffbb99a5f 100644 --- a/src/lib/user_property.h +++ b/src/lib/user_property.h @@ -1,35 +1,50 @@ /* Copyright (C) 2013-2016 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ +#ifndef DCPOMATIC_USER_PROPERTY_H +#define DCPOMATIC_USER_PROPERTY_H + +#include + class UserProperty { public: + enum Category { + GENERAL, + VIDEO, + AUDIO, + LENGTH + }; + template - 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 (value_)) + , value (dcp::locale_convert (value_)) , unit (unit_) {} - std::string category; + Category category; std::string key; std::string value; std::string unit; }; + +#endif