Geometrize  1.0
An application for geometrizing images into geometric primitives
Public Member Functions | Public Attributes | List of all members
geometrize::serialization::StringVectorData Struct Reference

The StringVectorData struct represents a vector of strings (as might be used for a history of terminal input, for example). More...

#include <stringvectordata.h>

Public Member Functions

template<class Archive >
void save (Archive &archive)
 
template<class Archive >
void load (Archive &archive)
 

Public Attributes

std::vector< std::string > strings
 The vector of strings. More...
 

Detailed Description

The StringVectorData struct represents a vector of strings (as might be used for a history of terminal input, for example).

Member Function Documentation

◆ load()

template<class Archive >
void geometrize::serialization::StringVectorData::load ( Archive &  archive)
inline
30  {
31  archive(strings);
32  }

◆ save()

template<class Archive >
void geometrize::serialization::StringVectorData::save ( Archive &  archive)
inline
24  {
25  archive(CEREAL_NVP(strings));
26  }

Member Data Documentation

◆ strings

std::vector<std::string> geometrize::serialization::StringVectorData::strings

The vector of strings.


The documentation for this struct was generated from the following file:
geometrize::serialization::StringVectorData::strings
std::vector< std::string > strings
The vector of strings.
Definition: stringvectordata.h:20