-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSpatialIntegratorContext.cpp
More file actions
41 lines (32 loc) · 1.38 KB
/
SpatialIntegratorContext.cpp
File metadata and controls
41 lines (32 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/***************************************************************************//**
* Project: Colony
*
* \file SpatialIntegratorContext.cpp
* \author Marc Weber\n
* The SiMBioSys group (CosmoLab)\n
* Parc Científic de Barcelona\n
* Barcelona, Spain.\n
* http://www.thesimbiosys.com
* \version 1.0
* \date 05/2011
*
* Copyright 2009 by Marc Weber
******************************************************************************/
#include "SpatialIntegratorContext.h"
//------------------------------------------------------------------------------
template<class SpatialIntegratorType>
SpatialIntegratorContext<SpatialIntegratorType>::SpatialIntegratorContext(Simulator* simulatorPtr)
: integrator_(simulatorPtr)
{}
//------------------------------------------------------------------------------
template<class SpatialIntegratorType>
SpatialIntegratorContext<SpatialIntegratorType>::~SpatialIntegratorContext()
{}
//------------------------------------------------------------------------------
/**
* To avoid linker errors, we have to define the template classes we will use.
* For more information, see the C++ FAQ:\n
* http://www.parashift.com/c++-faq-lite/templates.html#faq-35.15
*/
template class SpatialIntegratorContext<SpatialIntegratorODE>;
//------------------------------------------------------------------------------