예제 #1
0
파일: CFPP-Type.cpp 프로젝트: siraj/CFPP
 bool Type::operator == ( const Type & value ) const
 {
     if( this->GetCFObject() == NULL )
     {
         return false;
     }
     
     if( value.GetCFObject() == NULL )
     {
         return false;
     }
     
     return ( CFEqual( this->GetCFObject(), value.GetCFObject() ) ) ? true : false;
 }