diff options
Diffstat (limited to 'src/rl_str_proc.hh')
-rw-r--r-- | src/rl_str_proc.hh | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/rl_str_proc.hh b/src/rl_str_proc.hh deleted file mode 100644 index 3080395..0000000 --- a/src/rl_str_proc.hh +++ /dev/null @@ -1,32 +0,0 @@ -/* - * Module: rl_str_proc.hh - * - * This program is free software; you can redistribute it and/or modify it under - * the terms of the GNU General Public License version 2 as published by the - * Free Software Foundation. - */ - -#ifndef __RL_STR_PROC_HH__ -#define __RL_STR_PROC_HH__ - -#include <vector> -#include <string> - -class StrProc -{ -public: - StrProc(const std::string &in, const std::string &token); - - std::string get(int i); - - std::string get(int start, int end); - - std::vector<std::string> get(); - - int size() {return _str_coll.size();} - -private: - std::vector<std::string> _str_coll; -}; - -#endif //__RL_STR_PROC_HH__ |