Lemma is an Electromagnetics API
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GridReader.h 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /* This file is part of Lemma, a geophysical modelling and inversion API */
  2. /* This Source Code Form is subject to the terms of the Mozilla Public
  3. * License, v. 2.0. If a copy of the MPL was not distributed with this
  4. * file, You can obtain one at http://mozilla.org/MPL/2.0/.
  5. */
  6. /**
  7. @file
  8. @date 09/23/2013 11:25:11 AM
  9. @version $Id$
  10. @author Trevor Irons (ti)
  11. @email Trevor.Irons@xri-geo.com
  12. @copyright Copyright (c) 2013, XRI Geophysics, LLC
  13. @copyright Copyright (c) 2013, Trevor Irons
  14. **/
  15. #ifndef GRIDREADER_INC
  16. #define GRIDREADER_INC
  17. #include "LemmaObject.h"
  18. #include "Grid.h"
  19. namespace Lemma {
  20. /**
  21. @class
  22. \brief Abstract class for grid readers.
  23. \details Provides a consistent interface for reading grid files in Lemma.
  24. */
  25. class GridReader : public LemmaObject {
  26. friend std::ostream &operator << (std::ostream &stream, const GridReader &ob) {
  27. stream << ob.Serialize() << "\n---\n"; // End of doc --- as a direct stream should encapulste thingy
  28. return stream;
  29. }
  30. public:
  31. // ==================== LIFECYCLE =======================
  32. // ==================== OPERATORS =======================
  33. // ==================== OPERATIONS =======================
  34. virtual void ReadASCIIGridFile( const std::string& name )=0;
  35. virtual std::shared_ptr< Grid > GetGrid( )=0;
  36. // ==================== ACCESS =======================
  37. // ==================== INQUIRY =======================
  38. protected:
  39. // ==================== LIFECYCLE =======================
  40. /** Default protected constructor, use New */
  41. GridReader ( ) : LemmaObject( ) {
  42. }
  43. /** Default protected constructor, use Delete */
  44. ~GridReader () {
  45. }
  46. private:
  47. // ==================== DATA MEMBERS =========================
  48. }; // ----- end of class GridReader -----
  49. } // ----- end of Lemma name -----
  50. #endif // ----- #ifndef GRIDREADER_INC -----