Tatooine
serializable.h
Go to the documentation of this file.
1#ifndef TATOOINE_FLOWEXPLORER_SERIALIZABLE_H
2#define TATOOINE_FLOWEXPLORER_SERIALIZABLE_H
3//==============================================================================
4#include <toml++/toml.h>
5//==============================================================================
7//==============================================================================
9 virtual auto serialize() const -> toml::table = 0;
10 virtual void deserialize(toml::table const&) = 0;
11};
12//==============================================================================
13} // namespace tatooine::flowexplorer
14//==============================================================================
15#endif
Definition: directories.h:6
Definition: serializable.h:8
virtual void deserialize(toml::table const &)=0
virtual auto serialize() const -> toml::table=0