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.

pulse.h 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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/05/2010
  9. @version $Id: pulse.h 193 2014-11-10 23:51:41Z tirons $
  10. **/
  11. #ifndef _PULSE_H_INC
  12. #define _PULSE_H_INC
  13. #include "LemmaObject.h"
  14. namespace Lemma {
  15. // =======================================================================
  16. // Class: Pulse
  17. /// \brief Pure abstract class defining interace to some sort of pulse.
  18. /// \details
  19. // =======================================================================
  20. class Pulse : public LemmaObject {
  21. public:
  22. /** Recursively prints information about this object
  23. */
  24. friend std::ostream &operator<<(std::ostream &stream,
  25. const Pulse &ob);
  26. // ==================== LIFECYCLE ===========================
  27. // ==================== OPERATORS ===========================
  28. // ==================== OPERATIONS ===========================
  29. // ==================== ACCESS ===========================
  30. // ==================== INQUIRY ===========================
  31. // ==================== DATA MEMBERS ===========================
  32. protected:
  33. // ==================== LIFECYCLE ===========================
  34. /// Default protected constructor.
  35. Pulse (const std::string &name);
  36. /// Default protected constructor.
  37. ~Pulse ();
  38. }; // ----- end of class Pulse -----
  39. } // ----- end of Lemma name -----
  40. #endif // ----- #ifndef _PULSE_H_INC -----