Lemma is an Electromagnetics API
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

integrator.h 1.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 Trevor Irons
  8. @date 02/07/2011
  9. @version $Id: integrator.h 193 2014-11-10 23:51:41Z tirons $
  10. **/
  11. #ifndef INTEGRATOR_INC
  12. #define INTEGRATOR_INC
  13. #include "LemmaObject.h"
  14. namespace Lemma {
  15. // ===================================================================
  16. // Class: Integrator
  17. /**
  18. @class
  19. \brief
  20. \details
  21. */
  22. // ===================================================================
  23. class Integrator : public LemmaObject {
  24. /// Prints out basic info about the class
  25. friend std::ostream &operator<<(std::ostream &stream,
  26. const Integrator &ob);
  27. public:
  28. // ==================== LIFECYCLE =======================
  29. // ==================== OPERATORS =======================
  30. // ==================== OPERATIONS =======================
  31. // ==================== ACCESS =======================
  32. // ==================== INQUIRY =======================
  33. protected:
  34. // ==================== LIFECYCLE =======================
  35. /// Default protected constructor.
  36. Integrator (const std::string& name);
  37. /// Default protected constructor.
  38. ~Integrator ();
  39. // ==================== DATA MEMBERS =========================
  40. private:
  41. }; // ----- end of class Integrator -----
  42. } // ----- end of Lemma name -----
  43. #endif // ----- #ifndef INTEGRATOR_INC -----