Fleet  0.0.9
Inference in the LOT
Serializable.h
Go to the documentation of this file.
1 #pragma once
2 
3 template<typename T>
4 class Serializable {
5 public:
6  virtual std::string serialize() const = 0;
7  static T deserialize(const std::string&);
8 };
virtual std::string serialize() const =0
Definition: Serializable.h:4
static T deserialize(const std::string &)