Main Lemma Repository
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.

IntegrationKernel.cpp 721B

123456789101112131415161718192021222324252627
  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: integrationkernel.cpp 193 2014-11-10 23:51:41Z tirons $
  10. **/
  11. #include "IntegrationKernel.h"
  12. namespace Lemma {
  13. template <typename T>
  14. IntegrationKernel<T>::IntegrationKernel(const ctor_key& key) :
  15. LemmaObject(key) {
  16. }
  17. template<typename T>
  18. IntegrationKernel<T>::~IntegrationKernel( ) {
  19. }
  20. } // ----- end of Lemma name -----