123456789101112131415161718192021222324252627282930 |
-
-
-
-
-
-
- #include "Grid.h"
-
- namespace Lemma {
-
- std::ostream &operator << (std::ostream &stream, const Grid &ob) {
- stream << ob.Serialize() << "\n---\n";
- return stream;
- }
-
-
- Grid::Grid ( const std::string& name ) : LemmaObject(name) {
- }
-
- Grid::~Grid ( ) {
- }
-
- }
|