Optimize automation-event process splitting
[ardour.git] / libs / ardour / ardour / evoral_types_convert.h
1 /*
2     Copyright (C) 2015 Tim Mayberry
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #ifndef ARDOUR_EVORAL_TYPES_CONVERT_H
21 #define ARDOUR_EVORAL_TYPES_CONVERT_H
22
23 #include "pbd/enum_convert.h"
24
25 #include "temporal/beats.h"
26 #include "evoral/ControlList.hpp"
27
28 namespace PBD {
29
30 DEFINE_ENUM_CONVERT(Evoral::ControlList::InterpolationStyle)
31
32 template <>
33 inline bool to_string (Temporal::Beats beats, std::string& str)
34 {
35         return double_to_string (beats.to_double (), str);
36 }
37
38 template <>
39 inline bool string_to (const std::string& str, Temporal::Beats& beats)
40 {
41         double tmp;
42         if (!string_to_double (str, tmp)) {
43                 return false;
44         }
45         beats = Temporal::Beats(tmp);
46         return true;
47 }
48
49 template <>
50 inline std::string to_string (Temporal::Beats beats)
51 {
52         std::string tmp;
53         double_to_string (beats.to_double (), tmp);
54         return tmp;
55 }
56
57 template <>
58 inline Temporal::Beats string_to (const std::string& str)
59 {
60         double tmp;
61         string_to_double (str, tmp);
62         return Temporal::Beats (tmp);
63 }
64
65 } // namespace PBD
66
67 #endif // ARDOUR_EVORAL_TYPES_CONVERT_H