summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/strsplit.h
blob: f36a3ae5f0f6535de58e8b4dbc295898a42a3fef (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __pbd_strplit_h__
#define __pbd_strplit_h__

#include <string>
#include <vector>
#include <glibmm/ustring.h>

extern void split (std::string, std::vector<std::string>&, char);
extern void split (Glib::ustring, std::vector<Glib::ustring>&, char);

#endif // __pbd_strplit_h__