mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
Renamed pbd3 back to pbd, since it's version 4.1 now. Very minor fixes git-svn-id: svn://localhost/ardour2/trunk@656 d708f5d6-7413-0410-9779-e7cbd77b26cf
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__
|