A platform for high-performance distributed tool and library development written in C++. It can be deployed in two different cluster modes: standalone or distributed. API for v0.5.0, released on June 13, 2018.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
KeyValueList.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * *
3  * Copyright 2018 Rice University *
4  * *
5  * Licensed under the Apache License, Version 2.0 (the "License"); *
6  * you may not use this file except in compliance with the License. *
7  * You may obtain a copy of the License at *
8  * *
9  * http://www.apache.org/licenses/LICENSE-2.0 *
10  * *
11  * Unless required by applicable law or agreed to in writing, software *
12  * distributed under the License is distributed on an "AS IS" BASIS, *
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
14  * See the License for the specific language governing permissions and *
15  * limitations under the License. *
16  * *
17  *****************************************************************************/
18 
19 #ifndef KEY_VALUE_LIST_H
20 #define KEY_VALUE_LIST_H
21 
22 #include <iostream>
23 #include <memory>
24 #include <stdlib.h>
25 #include <string>
26 #include <utility>
27 #include <vector>
28 #include <map>
29 #include <unordered_map>
30 #include <memory>
31 
32 // this is a list of key value pairs... used to build up schema specifications
33 struct KeyValueList {
34 
35 private:
36 
37  std::shared_ptr<std::map <std::string, std::string>> keyValuePairs;
38 
39 public:
40 
42  keyValuePairs = std::make_shared<std::map <std::string, std::string>>();
43  }
44 
45  ~KeyValueList () = default;
46 
47  void appendkeyValuePair (std::string keyName, std::string valueName) {
48  (*keyValuePairs)[keyName] = valueName;
49  }
50 
51  std::shared_ptr<std::map <std::string, std::string>> &getKeyValuePairs () {
52  return keyValuePairs;
53  }
54 
55  //friend struct TupleSpec;
56 
57 };
58 
59 #endif
60 
std::shared_ptr< std::map< std::string, std::string > > & getKeyValuePairs()
Definition: KeyValueList.h:51
~KeyValueList()=default
void appendkeyValuePair(std::string keyName, std::string valueName)
Definition: KeyValueList.h:47
std::shared_ptr< std::map< std::string, std::string > > keyValuePairs
Definition: KeyValueList.h:37