#ifndef _MYAPP_H
#define _MYAPP_H

#include "DmGuiApp.h"


class MyApp : public DmGuiApp
{
  public:

  MyApp(
	 char *appClassName,
	 int *argc,
	 char **argv
	 );

  ~MyApp();  

  protected:
};

#endif
