mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
9 lines
185 B
C++
9 lines
185 B
C++
#ifndef __pbd_strplit_h__
|
|
#define __pbd_strplit_h__
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
extern void split (std::string, std::vector<std::string>&, char);
|
|
|
|
#endif // __pbd_strplit_h__
|