OOPS
instantiateLinearModelFactory.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2018-2021 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 #ifndef OOPS_GENERIC_INSTANTIATELINEARMODELFACTORY_H_
9 #define OOPS_GENERIC_INSTANTIATELINEARMODELFACTORY_H_
10 
13 
14 namespace oops {
15 
16 template <typename MODEL> void instantiateLinearModelFactory() {
17  static LinearModelMaker<MODEL, IdentityLinearModel<MODEL> > makerIdentityLinearModel_("Identity");
18 }
19 
20 } // namespace oops
21 
22 #endif // OOPS_GENERIC_INSTANTIATELINEARMODELFACTORY_H_
A subclass of LinearModelFactory able to create instances of T (a concrete subclass of LinearModelBas...
The namespace for the main oops code.
void instantiateLinearModelFactory()