subsurface/core/extradata.h

13 lines
165 B
C
Raw Normal View History

// SPDX-License-Identifier: GPL-2.0
#ifndef EXTRADATA_H
#define EXTRADATA_H
#include <string>
struct extra_data {
std::string key;
std::string value;
};
#endif