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

C:/temp/src/j2k/Beta/Math/Complex/CpxBuild.cpp

Go to the documentation of this file.
00001 #ifndef __J2K__JComplex_Build_CPP__
00002 #define __J2K__JComplex_Build_CPP__
00003 
00004 /////////////////////////////////////////////////////////////////////////////
00005 /// Constructors and Destructors                                          ///
00006 /////////////////////////////////////////////////////////////////////////////
00007 inline JComplex::JComplex( const CplxDouble r, const CplxDouble i )
00008   : Real( r ), Imag( i ) { }
00009 
00010 inline JComplex::JComplex( const CplxDouble r )
00011   : Real( r ), Imag( 0.0 ) { }
00012 
00013 inline JComplex::JComplex( const JComplex& c )
00014   : Real( c.Real ), Imag( c.Imag ) { }
00015 
00016 inline JComplex::~JComplex() { }
00017 
00018 #endif

Generated on Sun Oct 14 18:46:12 2001 for Standard J2K Library by doxygen1.2.11.1 written by Dimitri van Heesch, © 1997-2001