Memosa-FVM  0.2
OneToOneIndexMap.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 #include "OneToOneIndexMap.h"
6 
8  shared_ptr<Array<int> > toIndices) :
9  _fromIndices(fromIndices),
10  _toIndices(toIndices)
11 {
12  logCtor();
13 }
14 
15 
17 {
18  logDtor();
19 }
20 
#define logCtor()
Definition: RLogInterface.h:26
virtual ~OneToOneIndexMap()
#define logDtor()
Definition: RLogInterface.h:33
OneToOneIndexMap(shared_ptr< Array< int > > fromIndices, shared_ptr< Array< int > > toIndices)