Now you can download a copy of these docs so you can use them offline! Download now
StringCache.h
1 #ifndef _STRINGCACHE_H_
2 #define _STRINGCACHE_H_
3 
4 #include <map>
5 #include <string>
6 
7 using namespace std;
8 
15 class StringCache {
16 private:
17  map<std::string, std::string> cache;
18 
19 
24 public:
25  StringCache();
26  virtual ~StringCache();
27 
28 
29  std::string& Get(const std::string& input);
30 
36  virtual std::string Calc(const std::string& input) = 0;
37 };
38 
39 #endif

Generated on Sat Apr 26 2014 12:26:45 for WPILibC++ by doxygen 1.8.6