#ifndef _WEATHERSTATION_H
#define _WEATHERSTATION_H

#include <CosNotifyCommS.h>
#include <CosNotifyChannelAdminS.h>
#include <CosNotificationS.h>

#include "NewsPublisher.h"

class WeatherStation : public NewsPublisher
{
public:

  WeatherStation (CORBA::ORB_ptr orb) : NewsPublisher (orb)
  {
    maxDelay_ = 5000L;
  }

  virtual CosNotification::StructuredEvent *createNextEvent (void);
};

#endif // _WEATHERSTATION_H
