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.

modelreaderfem1d.h 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. @file
  7. @author M. Andy Kass
  8. @date 01/03/2013
  9. @version $Id$
  10. **/
  11. #ifndef __MODELREADERFEM1D_H
  12. #define __MODELREADERFEM1D_H
  13. #include "modelreader.h"
  14. namespace Lemma {
  15. // ===================================================================
  16. // Class: ModelReaderFem1D
  17. /// \brief
  18. /// \details
  19. // ===================================================================
  20. class ModelReaderFem1D : public ModelReader {
  21. friend std::ostream &operator<<(std::ostream &stream,
  22. const ModelReaderFem1D &ob);
  23. public:
  24. // ==================== LIFECYCLE =======================
  25. static ModelReaderFem1D* New();
  26. void Delete();
  27. // ==================== OPERATORS =======================
  28. // ==================== OPERATIONS =======================
  29. // ==================== ACCESS =======================
  30. // ==================== INQUIRY =======================
  31. protected:
  32. // ==================== LIFECYCLE =======================
  33. /// Default protected constructor.
  34. ModelReaderFem1D (const std::string &name);
  35. /// Default protected constructor.
  36. ~ModelReaderFem1D ();
  37. void Release();
  38. // ==================== DATA MEMBERS =========================
  39. private:
  40. }; // ----- end of class ModelReaderFem1D -----
  41. } // end of namespace Lemma
  42. #endif // __MODELREADERFEM1D_H