Memosa-FVM  0.2
Model.cpp
Go to the documentation of this file.
1 // This file os part of FVM
2 // Copyright (c) 2012 FVM Authors
3 // See LICENSE file for terms.
4 
5 
6 #include "Model.h"
7 
8 Model::Model(const MeshList& meshes) :
9  _meshes(meshes),
10  _varSites(),
11  _fluxSites()
12 {}
13 
15 {}
16 
17 map<string,shared_ptr<ArrayBase> >&
19 {
20  return _persistenceData;
21 }
22 
23 void
25 {}
26 
Model(const MeshList &meshes)
Definition: Model.cpp:8
virtual ~Model()
Definition: Model.cpp:14
map< string, shared_ptr< ArrayBase > > _persistenceData
Definition: Model.h:32
virtual void restart()
Definition: Model.cpp:24
virtual map< string, shared_ptr< ArrayBase > > & getPersistenceData()
Definition: Model.cpp:18
vector< Mesh * > MeshList
Definition: Mesh.h:439