diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-04-29 16:56:56 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2008-04-29 16:56:56 -0700 |
commit | a8726835c9064a1f2c6a261b14c637950abdd2bc (patch) | |
tree | fc9add560d1919d3f2c050d3da486038fba9e355 /watchlink/rl_str_proc.hh | |
parent | e87f46b4abc10fe3fc59562d6be25fb96bce1970 (diff) | |
download | quagga-a8726835c9064a1f2c6a261b14c637950abdd2bc.tar.bz2 quagga-a8726835c9064a1f2c6a261b14c637950abdd2bc.tar.xz |
remove watchlink - no longer used
The watchlink daemon is no longer used, so code can be removed.
If it is needed for future changes it can be recovered from the
source code control system.
Diffstat (limited to 'watchlink/rl_str_proc.hh')
-rw-r--r-- | watchlink/rl_str_proc.hh | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/watchlink/rl_str_proc.hh b/watchlink/rl_str_proc.hh deleted file mode 100644 index ad7d897f..00000000 --- a/watchlink/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__ |