mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
bc761344d4
Use std::string and std::vector. Much simpler code. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
12 lines
165 B
C++
12 lines
165 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef EXTRADATA_H
|
|
#define EXTRADATA_H
|
|
|
|
#include <string>
|
|
|
|
struct extra_data {
|
|
std::string key;
|
|
std::string value;
|
|
};
|
|
|
|
#endif
|