diff options
author | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-05 19:55:13 +0000 |
---|---|---|
committer | Sascha Volkenandt <sascha (at) akv-soft (dot) de> | 2007-01-05 19:55:13 +0000 |
commit | 8d278564f8350647964b5b9ccf3a6183ac7e2f0e (patch) | |
tree | a36930a3eae6e5ef2487aa24314966608eb05d3c /tools.h | |
parent | cd737785cace62f79fbd5f596ccb0d70de3e6252 (diff) | |
download | vdr-plugin-live-8d278564f8350647964b5b9ccf3a6183ac7e2f0e.tar.gz vdr-plugin-live-8d278564f8350647964b5b9ccf3a6183ac7e2f0e.tar.bz2 |
- added function StringSplit
Diffstat (limited to 'tools.h')
-rw-r--r-- | tools.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -3,12 +3,14 @@ #include <ctime> #include <string> +#include <vector> #include <vdr/thread.h> namespace vdrlive { std::string FormatDateTime( char const* format, time_t time ); std::string StringReplace( std::string const& text, std::string const& substring, std::string const& replacement ); +std::vector< std::string > StringSplit( std::string const& text, char delimiter ); class ReadLock { |