12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
-
-
-
-
-
-
- #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:
-
-
-
- virtual YAML::Node Serialize() const;
-
-
-
-
-
-
-
-
-
-
- virtual std::string GetName() const;
-
- protected:
-
-
-
-
- Grid (const YAML::Node& node, const ctor_key& );
-
-
- Grid ( const ctor_key& );
-
-
- virtual ~Grid ( );
-
-
-
- private:
-
-
- static constexpr auto CName = "Grid";
-
- };
-
- }
-
- #endif
|