#ifndef _TESTMONITOR_H
#define _TESTMONITOR_H

#include "DmMonitor.h"
#include "TestApp.h"

class TestMonitor : public DmMonitor {

  public:

  TestMonitor(TestApp *app);
  ~TestMonitor();



  protected:

  virtual int processDmChanges();

  TestApp *_testApp;
};


#endif
