Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 1, 2005, 11:29:44 PM (19 years ago)
Author:
patrick
Message:

orxonox/trunk: some more event cleanu[

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/util/event/event_handler.cc

    r4450 r4454  
    9393/**
    9494   \brief set the state of the event handler
    95    \param state to which the event handler shall change
     95   \param state: to which the event handler shall change
    9696*/
    9797void EventHandler::setState(elState state)
     
    103103/**
    104104   \brief subscribe to an event
    105    \param the event listener that wants to subscribe itself, the listener that will be called when the evetn occures
    106    \param state for which the listener wants to receive events
    107    \param the event type that wants to be listened for.
     105   \param el: the event listener that wants to subscribe itself, the listener that will be called when the evetn occures
     106   \param state: for which the listener wants to receive events
     107   \param eventType: the event type that wants to be listened for.
    108108
    109109   This is one of the most important function of the EventHandler. If you would like to subscribe for more
     
    134134/**
    135135   \brief unsubscribe from the EventHandler
    136    \param the stat in which it has been subscribed
    137    \param the event, that shall be unsubscribed
     136   \param state: the stat in which it has been subscribed
     137   \param eventType: the event, that shall be unsubscribed
    138138
    139139   if you want to unsubscribe an event listener from all subscribed events, just use the
     
    149149/**
    150150   \brief unsubscribe all events from a specific listener
    151    \param the listener that wants to unsubscribe itself
    152    \param the state in which the events shall be unsubscribed
     151   \param el: the listener that wants to unsubscribe itself
     152   \param state: the state in which the events shall be unsubscribed
    153153   
    154154*/
     
    179179/**
    180180   \brief flush all registered events
    181    \param in a specific state
     181   \param state: a specific state
    182182*/
    183183void EventHandler::flush(elState state)
Note: See TracChangeset for help on using the changeset viewer.