Line data Source code
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 : 11 : struct JsonAdapterDataType { 12 142573 : JsonAdapterDataType(const std::string &k, const std::string &v) 13 142573 : : key(k), value(v) { 14 142583 : } 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