| 13 | class KVVector : public SharedParameter<K> { |
| 14 | public: |
| 15 | KVVector(const string& my_name, const string& parent_name = FLAGS_app_name, int k = 1) : |
| 16 | SharedParameter<K>(my_name, parent_name), val_entry_size_(k) { } |
| 17 | // KVVector() : val_entry_size_(1) { } |
| 18 | // KVVector(int k) : val_entry_size_(k) { } |
| 19 | virtual ~KVVector() { } |
nothing calls this directly
no outgoing calls
no test coverage detected