Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

IdentityParameterFilter.cpp

Go to the documentation of this file.
00001 // IdentityParameterFilter.cpp: implementation of the CIdentityParameterFilter class.
00002 //
00004 
00005 #include "IdentityParameterFilter.h"
00006 
00008 // Construction/Destruction
00010 
00011 CIdentityParameterFilter::CIdentityParameterFilter()
00012 {
00013 
00014 }
00015 
00016 CIdentityParameterFilter::~CIdentityParameterFilter()
00017 {
00018 
00019 }
00020 
00021 double CIdentityParameterFilter::Operator(double operand)
00022 {
00023         return operand;
00024 }
00025 
00026 double CIdentityParameterFilter::OperatorInverse(double operand)
00027 {
00028         return operand;
00029 }

Generated on Mon Nov 3 09:37:55 2003 by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002