자꾸 오류가 난다

class Jacket : protected cloth{

public:

Jacket()

{

                create();

}

virtual create()

{

          if(createfromnewpaper())

             done();

          else

#if defined(_DEBUG)

         outputdebugstring("이게 다 코세때문이다/n");

#else

         dump(this);

#endif

             

}

virtual bool createfromnewpaper();

virtual void done() = 0;

};


//   요일별로 한벌씩

Jacket mycloth[7];