12345678910111213141516171819202122232425262728293031323334353637383940414243 |
-
-
-
-
-
-
- #include "Grid.h"
-
- namespace Lemma {
-
- std::ostream &operator << (std::ostream &stream, const Grid &ob) {
- stream << ob.Serialize() << "\n---\n";
- return stream;
- }
-
-
-
- Grid::Grid( ) : LemmaObject( ) {
- }
-
- Grid::Grid( const YAML::Node& node ) : LemmaObject(node) {
-
- }
-
- Grid::~Grid ( ) {
- }
-
- YAML::Node Grid::Serialize() const {
-
- YAML::Node node = LemmaObject::Serialize();
- node.SetTag( this->GetName() );
- return node;
-
- }
-
- }
|