subsurface/core/extradata.h
Berthold Stoeger bc761344d4 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-08-13 19:28:30 +02:00

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