Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 30, 2006, 9:54:28 PM (18 years ago)
Author:
bensch
Message:

gui: doxytags, and returning reference to temporary resolved

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/gui/gl_gui/signal_connector.cc

    r7992 r7994  
    6262  }
    6363
     64  /**
     65   * @brief assignes a SignalConnector to the current one
     66   * @param signalConnector the SignalConnector to assign to this one
     67   * @return A Reference to this SignalConnector.
     68   */
    6469  SignalConnector& SignalConnector::operator=(const SignalConnector& signalConnector)
    6570  {
     
    6772    this->object = signalConnector.object;
    6873    this->exec = (signalConnector.exec == NULL) ? NULL : signalConnector.exec->clone();
     74  }
     75
     76
     77  /**
     78   * @brief compares two SignalConnectors.
     79   * @param signalConnector the SignalConnector to compare against this one.
     80   * @return true if the Connectors are the same.
     81   */
     82  bool SignalConnector::operator==(const SignalConnector& signalConnector) const
     83  {
     84    return (this->object == signalConnector.object /* && this->exec == signalConnector.exec */ );
    6985  }
    7086
Note: See TracChangeset for help on using the changeset viewer.