EpetraExt Package Browser (Single Doxygen Collection)
Development
|
#include <EpetraExt_Transform.h>
Public Member Functions | |
bool | fwd () |
Forward transfer of data from orig object input in the operator() method call to the new object created in this same call. More... | |
bool | rvs () |
Reverse transfer of data from new object created in the operator() method call to the orig object input to this same method. More... | |
virtual | ~StructuralTransform () |
Public Member Functions inherited from EpetraExt::Transform< T, U > | |
virtual | ~Transform () |
virtual NewTypeRef | operator() (OriginalTypeRef orig)=0 |
Analysis of transform operation on original object and construction of new object. More... | |
virtual bool | analyze (OriginalTypeRef orig) |
Initial analysis phase of transform. More... | |
virtual NewTypeRef | construct () |
Construction of new object as a result of the transform. More... | |
virtual bool | isConstructed () |
Check for whether transformed object has been constructed. More... | |
Additional Inherited Members | |
Public Types inherited from EpetraExt::Transform< T, U > | |
typedef T | OriginalType |
typedef T * | OriginalTypePtr |
typedef Teuchos::RCP< T > | OriginalTypeRCP |
typedef T & | OriginalTypeRef |
typedef U | NewType |
typedef U * | NewTypePtr |
typedef Teuchos::RCP< U > | NewTypeRCP |
typedef U & | NewTypeRef |
Protected Member Functions inherited from EpetraExt::Transform< T, U > | |
Transform () | |
Default constructor, protected to allow only derived classes to use. More... | |
Protected Attributes inherited from EpetraExt::Transform< T, U > | |
OriginalTypePtr | origObj_ |
NewTypePtr | newObj_ |
Definition at line 260 of file EpetraExt_Transform.h.
|
inlinevirtual |
Definition at line 266 of file EpetraExt_Transform.h.
|
inlinevirtual |
Forward transfer of data from orig
object input in the operator()
method call to the new object created in this same call.
Returns true
is operation is successful.
Preconditions:
Invariants:
Postconditions:
Implements EpetraExt::Transform< T, U >.
Definition at line 263 of file EpetraExt_Transform.h.
|
inlinevirtual |
Reverse transfer of data from new object created in the operator()
method call to the orig
object input to this same method.
Returns true
if operation is successful.
Preconditions:
Invariants:
Postconditions:
Implements EpetraExt::Transform< T, U >.
Definition at line 264 of file EpetraExt_Transform.h.