merged with 1697 revision of trunk (which is post-rc1 but pre-rc2
[ardour.git] / libs / pbd / pbd / strsplit.h
1 #ifndef __pbd_strplit_h__
2 #define __pbd_strplit_h__
3
4 #include <string>
5 #include <vector>
6 #include <glibmm/ustring.h>
7
8 extern void split (std::string, std::vector<std::string>&, char);
9 extern void split (Glib::ustring, std::vector<Glib::ustring>&, char);
10
11 #endif // __pbd_strplit_h__