mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
4ac2486a23
After all it doesn't access any dive_site structure. Moreover, rename it, since we use mostly snake_case in core. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef TAXONOMY_H
|
|
#define TAXONOMY_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
enum taxonomy_category {
|
|
TC_NONE,
|
|
TC_OCEAN,
|
|
TC_COUNTRY,
|
|
TC_ADMIN_L1,
|
|
TC_ADMIN_L2,
|
|
TC_LOCALNAME,
|
|
TC_ADMIN_L3,
|
|
TC_NR_CATEGORIES
|
|
};
|
|
|
|
enum taxonomy_origin {
|
|
GEOCODED,
|
|
GEOPARSED,
|
|
GEOMANUAL,
|
|
GEOCOPIED
|
|
};
|
|
|
|
extern const char *taxonomy_category_names[TC_NR_CATEGORIES];
|
|
extern const char *taxonomy_api_names[TC_NR_CATEGORIES];
|
|
|
|
struct taxonomy {
|
|
taxonomy_category category; /* the category for this tag: ocean, country, admin_l1, admin_l2, localname, etc */
|
|
std::string value; /* the value returned, parsed, or manually entered for that category */
|
|
taxonomy_origin origin;
|
|
};
|
|
|
|
/* the data block contains taxonomy structures - unused ones have a tag value of NONE */
|
|
using taxonomy_data = std::vector<taxonomy>;
|
|
|
|
std::string taxonomy_get_value(const taxonomy_data &t, enum taxonomy_category cat);
|
|
std::string taxonomy_get_country(const taxonomy_data &t);
|
|
std::string taxonomy_get_location_tags(const taxonomy_data &taxonomy, bool for_maintab);
|
|
void taxonomy_set_category(taxonomy_data &t, enum taxonomy_category category, const std::string &value, enum taxonomy_origin origin);
|
|
void taxonomy_set_country(taxonomy_data &t, const std::string &country, enum taxonomy_origin origin);
|
|
|
|
#endif // TAXONOMY_H
|