12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
-
-
-
-
-
-
- #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:
-
-
-
-
-
-
-
-
-
-
-
- protected:
-
-
-
-
- Grid (const std::string &name);
-
-
- ~Grid ();
-
-
-
- private:
-
- };
-
- }
-
- #endif
|