Add additional PBD::string_to/to_string specializations for PBD::ID
[ardour.git] / libs / pbd / pbd / 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 PBD_TYPES_CONVERT_H
21 #define PBD_TYPES_CONVERT_H
22
23 #include "pbd/enum_convert.h"
24
25 #include "pbd/controllable.h"
26 #include "pbd/id.h"
27
28 namespace PBD {
29
30 DEFINE_ENUM_CONVERT(Controllable::Flag)
31
32 template <>
33 inline bool to_string (ID val, std::string& str)
34 {
35         str = val.to_s();
36         return true;
37 }
38
39 template <>
40 inline bool string_to (const std::string& str, ID& val)
41 {
42         val = str;
43         return true;
44 }
45
46 template <>
47 inline std::string to_string (ID val)
48 {
49         return val.to_s();
50 }
51
52 template <>
53 inline ID string_to (const std::string& str)
54 {
55         return ID(str);
56 }
57
58 } // namespace PBD
59
60 #endif // PBD_TYPES_CONVERT_H