#ifndef _WEATHERMAN_H
#define _WEATHERMAN_H

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

#include "NewsSubscriber.h"

class WeatherMan : public NewsSubscriber
{
public:

  WeatherMan (CORBA::ORB_ptr orb) : NewsSubscriber (orb)
  {}

  virtual void select (const char *bureau);
};

#endif  // _WEATHERMAN_H
