Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 12, 2009, 12:59:51 AM (15 years ago)
Author:
landauf
Message:

added OverlaysPrereqs.h
added _OverlaysExport macro

Location:
code/branches/libraries/src/orxonox/overlays/notifications
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/libraries/src/orxonox/overlays/notifications/NotificationOverlay.h

    r3196 r5630  
    3636#define _NotificationOverlay_H__
    3737
    38 #include "OrxonoxPrereqs.h"
     38#include "overlays/OverlaysPrereqs.h"
    3939
    4040#include <string>
     
    5050        Damian 'Mozork' Frick
    5151    */
    52     class _OrxonoxExport NotificationOverlay : public OverlayText
     52    class _OverlaysExport NotificationOverlay : public OverlayText
    5353    {
    5454
     
    5757            NotificationOverlay(NotificationQueue* queue, Notification* notification);
    5858            virtual ~NotificationOverlay();
    59            
     59
    6060            bool processNotification(Notification* notification); //!< Processes the input Notification.
    6161
     
    6666            inline void setFontSize(float size)
    6767                { this->setTextSize(size); }
    68        
     68
    6969        protected:
    7070            std::string clipMessage(const std::string & message); //!< Clips the input message if too long.
  • code/branches/libraries/src/orxonox/overlays/notifications/NotificationQueue.h

    r5619 r5630  
    3535#define _NotificationOueue_H__
    3636
    37 #include "OrxonoxPrereqs.h"
     37#include "overlays/OverlaysPrereqs.h"
    3838
    3939#include <ctime>
     
    8585    */
    8686
    87     class _OrxonoxExport NotificationQueue : public OverlayGroup, public Tickable, public NotificationListener
     87    class _OverlaysExport NotificationQueue : public OverlayGroup, public Tickable, public NotificationListener
    8888    {
    8989
Note: See TracChangeset for help on using the changeset viewer.