1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
-
-
-
-
-
-
- #ifndef __GRID_H
- #define __GRID_H
-
- #include "LemmaObject.h"
-
- namespace Lemma {
-
-
-
-
-
-
-
-
- class Grid : public LemmaObject {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const Grid &ob);
-
- public:
-
-
-
- YAML::Node Serialize() const;
-
-
-
-
-
-
-
-
-
-
- virtual inline std::string GetName() const {
- return this->CName;
- }
-
- protected:
-
-
-
-
- Grid (const YAML::Node& node);
-
-
- Grid ( );
-
-
- ~Grid ();
-
-
-
- private:
-
-
- static constexpr auto CName = "Grid";
-
- };
-
- }
-
- #endif
|