12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
-
-
-
-
-
-
- #ifndef GRIDREADER_INC
- #define GRIDREADER_INC
-
- #include "LemmaObject.h"
- #include "grid.h"
-
- namespace Lemma {
-
-
-
- class GridReader : public LemmaObject {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const GridReader &ob) {
- stream << *(LemmaObject*)(&ob);
- return stream;
- }
-
- public:
-
-
-
-
-
-
-
- virtual void ReadASCIIGridFile( const std::string& name )=0;
-
- virtual Grid* GetGrid( )=0;
-
-
-
-
-
- protected:
-
-
-
-
- GridReader (const std::string& name) : LemmaObject(name) {
- }
-
-
- ~GridReader () {
- }
-
- private:
-
-
-
- };
-
-
- }
-
- #endif
|