Lemma is an Electromagnetics API
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

GridReader.h 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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,
  27. const GridReader &ob) {
  28. stream << *(LemmaObject*)(&ob);
  29. return stream;
  30. }
  31. public:
  32. // ==================== LIFECYCLE =======================
  33. // ==================== OPERATORS =======================
  34. // ==================== OPERATIONS =======================
  35. virtual void ReadASCIIGridFile( const std::string& name )=0;
  36. virtual Grid* GetGrid( )=0;
  37. // ==================== ACCESS =======================
  38. // ==================== INQUIRY =======================
  39. protected:
  40. // ==================== LIFECYCLE =======================
  41. /** Default protected constructor, use New */
  42. GridReader (const std::string& name) : LemmaObject(name) {
  43. }
  44. /** Default protected constructor, use Delete */
  45. ~GridReader () {
  46. }
  47. private:
  48. // ==================== DATA MEMBERS =========================
  49. }; // ----- end of class GridReader -----
  50. } // ----- end of Lemma name -----
  51. #endif // ----- #ifndef GRIDREADER_INC -----