123456789101112131415161718192021222324252627 |
- /* This file is part of Lemma, a geophysical modelling and inversion API */
-
- /* This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
-
- /**
- @file
- @author Trevor Irons
- @date 02/07/2011
- @version $Id: integrationkernel.cpp 193 2014-11-10 23:51:41Z tirons $
- **/
-
- #include "integrationkernel.h"
-
- namespace Lemma {
-
- template <typename T>
- IntegrationKernel<T>::IntegrationKernel(const std::string& name) :
- LemmaObject(name) {
- }
-
- template<typename T>
- IntegrationKernel<T>::~IntegrationKernel( ) {
- }
-
- } // ----- end of Lemma name -----
|