IODA
Distribution.cc
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #include <algorithm>
9 
10 #include "ioda/distribution/Distribution.h"
11 
12 #include "oops/util/Logger.h"
13 
14 namespace ioda {
15 // -----------------------------------------------------------------------------
16 
17 Distribution::Distribution(const eckit::mpi::Comm & Comm) : comm_(Comm) {
18  oops::Log::trace() << "Distribution constructed" << std::endl;
19 }
20 
21 // -----------------------------------------------------------------------------
22 
24  oops::Log::trace() << "Distribtion destructed" << std::endl;
25 }
26 
27 // -----------------------------------------------------------------------------
28 
29 } // namespace ioda
ioda::Distribution::Distribution
Distribution(const eckit::mpi::Comm &Comm)
Definition: Distribution.cc:17
ioda
Definition: IodaUtils.cc:13
ioda::Distribution::~Distribution
virtual ~Distribution()=0
Definition: Distribution.cc:23