OpenSDN source code
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
json_adapter_data.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef ctrlplane_json_adapter_data_h
6 #define ctrlplane_json_adapter_data_h
7 
8 #include <string>
9 #include <vector>
10 
12  JsonAdapterDataType(const std::string &k, const std::string &v)
13  : key(k), value(v) {
14  }
15  std::string key;
16  std::string value;
17  std::string ref_fq_name;
18 };
19 
20 typedef std::vector<JsonAdapterDataType> CassColumnKVVec;
21 
22 #endif // ctrlplane_json_adapter_data_h
std::vector< JsonAdapterDataType > CassColumnKVVec
JsonAdapterDataType(const std::string &k, const std::string &v)