Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 24, 2010, 4:01:04 PM (15 years ago)
Author:
dafrick
Message:

Mostly more documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/modules/notifications/NotificationQueue.h

    r7488 r7489  
    4343#include <vector>
    4444
     45#include "NotificationManager.h"
     46
    4547#include "tools/interfaces/Tickable.h"
    46 
    4748#include "interfaces/NotificationListener.h"
    48 #include "NotificationManager.h"
    4949
    5050namespace orxonox // tolua_export
     
    5454    struct NotificationContainer
    5555    {
    56         Notification* notification; // The Notification displayed.
    57         time_t time; // The time the Notification was sent and thus first displayed.
     56        Notification* notification; //!< The Notification displayed.
     57        time_t time; //!< The time the Notification was sent and thus first displayed.
    5858    };
    5959
     
    6161    struct NotificationContainerCompare {
    6262        bool operator() (const NotificationContainer* const & a, const NotificationContainer* const & b) const
    63             { return a->time < b->time; } // Ordered by time.
     63            { return a->time < b->time; } //!< Ordering by time.
    6464    };
    6565
Note: See TracChangeset for help on using the changeset viewer.