CORGI
An open source project by
FPL.
|
Contains the graph state information, as well as the filename for serialization. More...
#include <graph.h>
Contains the graph state information, as well as the filename for serialization.
Public Member Functions | |
SerializableGraphState () | |
Default constructor for a SerializableGraphState. | |
SerializableGraphState (SerializableGraphState &&other) | |
Move constructor for a SerializableGraphState. More... | |
SerializableGraphState & | operator= (SerializableGraphState &&other) |
Move assignment operator for SerializableGraphState. More... | |
Public Attributes | |
std::string | filename |
The filename for serialization. | |
std::unique_ptr < breadboard::GraphState > | graph_state |
The Breadboard graph state data. | |
|
inline |
Move constructor for a SerializableGraphState.
[in] | other | A SerializableGraphState whose data will be moved into this SerializableGraphState. |
|
inline |
Move assignment operator for SerializableGraphState.
[in] | other | A SerializableGraphState whose data will be moved into this SerializableGraphState. |