Skip to end of metadata
Go to start of metadata

bool URI::operator== ( const URI right  )  const

Compares two FB::URI objects.

Definition at line 153 of file URI.cpp.

00153                                            {
00154     return ( (protocol == right.protocol) &&
00155         (login == right.login) &&
00156         (domain == right.domain) &&
00157         (port == right.port) &&
00158         (path == right.path) &&
00159         (fragment == right.fragment) &&
00160         (query_data == right.query_data)
00161         );
00162 }


Generated on 25 May 2013 for FireBreath by  doxygen 1.6.1
Labels
  • None