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.

datareaderfem.h 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 __DATAREADERFEM_H
  12. #define __DATAREADERFEM_H
  13. #include "datareader.h"
  14. #include "datafem.h"
  15. namespace Lemma {
  16. // ===================================================================
  17. // Class: DataReaderFem
  18. /// \brief
  19. /// \details
  20. // ===================================================================
  21. class DataReaderFem : DataReader {
  22. public:
  23. // ==================== LIFECYCLE =======================
  24. static DataReaderFem* New();
  25. void Delete();
  26. // ==================== OPERATORS =======================
  27. // ==================== OPERATIONS =======================
  28. // ==================== ACCESS =======================
  29. Data* GetData();
  30. // ==================== INQUIRY =======================
  31. protected:
  32. // ==================== LIFECYCLE =======================
  33. /// Default protected constructor.
  34. DataReaderFem (const std::string &name);
  35. /// Default protected constructor.
  36. ~DataReaderFem ();
  37. void Release();
  38. // ==================== DATA MEMBERS =========================
  39. private:
  40. }; // ----- end of class DataReaderFem -----
  41. } // end of namespace Lemma
  42. #endif