#ifndef _IVIEWCONTROLMONITOR_H
#define _IVIEWCONTROLMONITOR_H

#include "Iview.h"
#include "DmControlSource.h"

class IviewControlMonitor : public ErrorHandler
{
  public:
  IviewControlMonitor(const char *controlName);
  ~IviewControlMonitor();
  
  int getDevices(unsigned short *deviceMask);

  protected:
  DmControlSource *_dmControlSource;
  char *_controlName;
};



#endif
