Thyra  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Thyra_IdentityLinearOpBase.hpp
1 // @HEADER
2 // *****************************************************************************
3 // Thyra: Interfaces and Support for Abstract Numerical Algorithms
4 //
5 // Copyright 2004 NTESS and the Thyra contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #ifndef THYRA_IDENTITY_LINEAR_OP_BASE_HPP
11 #define THYRA_IDENTITY_LINEAR_OP_BASE_HPP
12 
13 #include "Thyra_LinearOpBase.hpp"
14 
15 namespace Thyra {
16 
35 template<class Scalar>
36 class IdentityLinearOpBase : virtual public LinearOpBase<Scalar>
37 {};
38 
39 } // namespace Thyra
40 
41 #endif // THYRA_IDENTITY_LINEAR_OP_BASE_HPP
Interface class for identity linear operators.
Base class for all linear operators.