#ifndef _DEMO_HPP_
#define _DEMO_HPP_

class Demo
{
public:
   Demo()
   {}
   virtual ~Demo()
   {}
};

#endif // _DEMO_HPP_
   