subsurface/core/extradata.h
Berthold Stoeger e29c044d91 core: convert dive computer extra data to C++
Use std::string and std::vector. Much simpler code.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2024-06-10 13:05:58 +02:00

13 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