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