hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
NameValueMass.h
Go to the documentation of this file.
1 #ifndef NAMEVALUEMASS_H
2 #define NAMEVALUEMASS_H
3 
4 #include <map>
5 #include <string>
6 
7 class NameValueMass :public std::map<std::string, std::string>
8 {
9  private:
10  typedef std::map<std::string, std::string> ParentMap;
11  void insertNameValue(const char *str, unsigned int len);
12  public:
13  std::map<std::string, std::string>::iterator internalIter;
14  public:
15  NameValueMass(const char *str);
16  const char *getStrVal(const char *name);
18 };
19 
20 #endif