rename string_for_value_type to type_identifier

This commit is contained in:
Max Lyon
2021-03-15 16:15:24 +01:00
parent 20baccda4c
commit 2a4fd0b887
7 changed files with 14 additions and 14 deletions

View File

@@ -79,7 +79,7 @@ namespace OpenMesh {
return size_of();
}
static std::string string_for_value_type(void) { return "MyData"; }
static std::string type_identifier(void) { return "MyData"; }
static size_t store(std::ostream& _os, const value_type& _v, bool _swap=false)
{
size_t bytes;
@@ -126,7 +126,7 @@ namespace OpenMesh {
return bytes;
}
static std::string string_for_value_type(void) { return "MyMap"; }
static std::string type_identifier(void) { return "MyMap"; }
static
size_t store(std::ostream& _os, const value_type& _v, bool _swap=false)
{